aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/drawable (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-09-03Display a splash screen when the app starts.Alex Ning2-0/+12
2019-08-27Delete wrong credit. Change the notification icon and color.Alex Ning1-0/+19
2019-08-27This app now has an icon (finally)git statusgit statusgit status Add a ↵Alex Ning7-170/+123
credits page in settings. Use another error view and no comment placeholder.
2019-08-26Display an archived icon if the post is archived. Display a locked icon if ↵Alex Ning1-0/+9
the post is locked.
2019-08-22Saving and unsaving post are now available. Disable commenting and replying ↵Alex Ning2-0/+18
for locked posts in last commit.
2019-08-21Fixed getting same notifications for different accounts (for real this ↵Alex Ning3-0/+39
time). Add a settings acivity but with no use now. Minor bugs fixed. Minor UI tweaks.
2019-08-18View messages in ViewMessageActivity. Use LinkResolverActivity to handle ↵Alex Ning1-0/+9
link clicking in CustomMarkwonView. Fixed cannot load user profile image after the post is deleted.
2019-08-14Current user's upvoted, downvoted, hidden, saved, gilded posts are now ↵Alex Ning3-0/+27
available to see.
2019-08-14Editing flair is now available.Alex Ning1-0/+9
2019-08-13Editing and deleting comments are now available.Alex Ning1-0/+9
2019-08-08Log in other reddit accounts are available. Add an account switcher in the ↵Alex Ning5-0/+45
navigation drawer in MainActivity.
2019-07-26Sorting posts is now available. Minor bugs fixed.Alex Ning1-0/+9
2019-07-12Preparing to submit image posts.Alex Ning2-0/+18
2019-07-12Use a modal bottom sheet to display post selection instead of an alert ↵Alex Ning5-0/+45
dialog. Fixed some icons.
2019-06-25Reimplement ViewPostActivity using one recyclerview to display a post and ↵Alex Ning1-0/+0
its comments instead of using a recyclerview inside NestedScrollView to prevent onBindViewHolder gets called for all the comments data at once and thus consumes more memory and freezes after the comments are loaded.
2019-06-14Reply to comments. Preparing for comment deletion.Alex Ning1-0/+4
2019-06-13Add CommentActivity for sending comments (not implemented yet). Minor UI tweaks.Alex Ning2-0/+10
2019-02-22Add a search view in MainActivity and add a SearchActivity.Alex Ning1-0/+5
2019-01-04Minor UI tweaks.Alex Ning5-37/+18
2018-10-05Display a crosspost icon if the post is a crosspost. Hide the thumbtack icon ↵Alex Ning1-0/+17
if the post is not viewed in its subreddit. Tweak the post layout. Minor bugs fixed.
2018-10-01Add an error view when loading the image fails in ViewImageActivity.Alex Ning1-0/+5
2018-09-28Change the layout of post. Add an error view when loading the preview image ↵Alex Ning1-0/+9
fails.
2018-09-24Add a feature which is refreshing the posts by clicking the refresh button. ↵Alex Ning1-0/+5
Minor bugs fixed. Rewrite some code.
2018-09-02Replace the RecyclerView for comments to MultiLevelRecyclerView in order to ↵Alex Ning5-6/+14
display the comment trees easily. Click the expand more button to expand the comment tree. Click the expand less button to hide the comment tree. Rewrite some code.
2018-08-30Display a custom error view when there is something wrong when loading best ↵Alex Ning1-0/+0
posts. Probably fix a bug that holder.getAdapterPosition() returns -1 when loading subreddit icons in the RecyclerView of PostFragment. Subreddit banners are parsed correctly in ParseSubscribedThing. Check if the api call is successful in onResponse. Rewrite some methods.
2018-08-24Display a thumbtack icon if the post is stickied on top. Display a gold icon ↵Alex Ning2-0/+0
and the number of gold if the post is gilded. Load subreddit icons in LoadSubredditIconAsyncTaskListener instead of loading the icons in onPostExecute() of LoadSubredditIconAsyncTask in order to avoid loading icons on a destroyed activity when start the Activity and then press back or up button immediately.
2018-08-11Fixed a bug which causes the app to crash when there is no comment in a ↵Alex Ning1-0/+0
post. Add a no comment placeholder which is displayed when there is no comment in a post.
2018-07-28Add RecyclerView for subscribed subreddits in navigation drawer and rewrite ↵Alex Ning2-0/+5
some code