Skip to content
This repository has been archived by the owner on Jul 25, 2024. It is now read-only.

Implemented RecyclerView inplace of ListView + UI updated #81

Merged
merged 35 commits into from
Aug 8, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
7ca4f58
Change To recycler in XML
kunall17 Jul 8, 2016
1fdfc96
Recycler View Message Adapter
kunall17 Jul 8, 2016
da4c6f3
Removed old adapter
kunall17 Jul 8, 2016
4be7320
Setup new recycler message adapter
kunall17 Jul 8, 2016
e06a3db
Setup list's and add new message Header parent
kunall17 Jul 8, 2016
828fc47
onCreateViewHolder method for the adapter
kunall17 Jul 8, 2016
8994b37
Implement onBindViewHolder
kunall17 Jul 8, 2016
0f42d51
Implement Picasso for loading gravatar
kunall17 Jul 8, 2016
47fce03
Implement bind TimeStamp to the holder
kunall17 Jul 8, 2016
ab5965c
Implement Getter's for different objects
kunall17 Jul 8, 2016
d593004
Mark message read when View Holder is attached
kunall17 Jul 8, 2016
2d93f0a
Setup Header and footer loading views
kunall17 Jul 15, 2016
65ad327
Setup Click Listener's for the Views
kunall17 Jul 15, 2016
88af578
Moved getFormattedContent to the message class
kunall17 Jul 8, 2016
a8d6594
Removed Unused/old code in fragment
kunall17 Jul 8, 2016
3727b46
Implement recyclerview and adapter in fragment
kunall17 Jul 8, 2016
2a938f5
Changed code for ScrollListener for recyclerView
kunall17 Jul 8, 2016
b21876f
Change in muteTopic in ZulipActivity
kunall17 Jul 8, 2016
3127fe2
Implement ItemDecoration for spacing between messageHeaders
kunall17 Jul 8, 2016
090eae1
Show toast on new messages loaded
kunall17 Jul 16, 2016
a57919b
Show scrollbars in the recyclerView
kunall17 Jul 15, 2016
5ddf729
Filter by today's messages
kunall17 Jul 15, 2016
d786b39
Move ChatBox to another xml
kunall17 Jul 21, 2016
845f442
Coordinator Behaviour to hide views on scroll
kunall17 Jul 21, 2016
3b3ce36
Implement Floating ActionButton
kunall17 Jul 21, 2016
2bffded
Hide FAB after 5 sec
kunall17 Jul 21, 2016
f68ec55
Click listener on FAB for showing chatbox
kunall17 Jul 21, 2016
2574423
Display ChatBox onNarrow and hide FAB
kunall17 Jul 21, 2016
9fa33a3
Do not hide Chatbox if currently chatBox is used
kunall17 Jul 21, 2016
759795b
Hide ChatBox on scroll
kunall17 Jul 21, 2016
76fe9b7
Removed redundant FrameLayout parent
kunall17 Jul 21, 2016
822cd21
Add toolbar space to top
kunall17 Jul 24, 2016
93d71d7
Hide/Show header/footer loading views
kunall17 Jul 24, 2016
7f36ce5
Add new messages to new headers
kunall17 Jul 24, 2016
cd4b4d3
Add margin to the bottommost message
kunall17 Jul 31, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ dependencies {
androidTestCompile('com.android.support:support-annotations:24.0.0') {
exclude group: 'com.android.support'
}
compile 'com.squareup.picasso:picasso:2.5.2'
testCompile 'junit:junit:4.12'
compile 'com.squareup.okhttp3:okhttp:3.4.1'
}
Expand Down
268 changes: 0 additions & 268 deletions app/src/main/java/com/zulip/android/activities/MessageAdapter.java

This file was deleted.

Loading