aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-08-18Added feature: Vote in ViewPostDetailActivity. Fix some behavior after the ↵Alex Ning4-16/+243
vote fails.
2018-08-18Save vote state in CommentDataAlex Ning2-0/+25
2018-08-18Load user info after the new access token is retrieved if the old access ↵Alex Ning7-102/+229
token expired. Feature added: vote comment
2018-08-11Disable image rotation in ViewImageActivity. Disable dispatching touch event ↵Alex Ning1-5/+19
in ViewImageActivity when the image is zooming in or out in order to view the image.
2018-08-11Fixed a bug which causes the app to crash when there is no comment in a ↵Alex Ning3-2/+24
post. Add a no comment placeholder which is displayed when there is no comment in a post.
2018-08-10Fixed a bug which causes the app crash when starting ViewImageActivity from ↵Alex Ning2-40/+3
ViewPostDetailActivity.
2018-08-10Display the subreddit icon in ViewPostDetailActivity. Fixed a bug when the ↵Alex Ning4-16/+105
subreddit had no icon, the default icon was not shown. Save the subreddit icon url to BestPostData. Having done saving the subreddit icon url to the instance of BestPostData, skip loading the icon from the database using AsyncTask and load the icon from the instance of BestPostData instead.
2018-08-10Display subreddit icons in best posts, eventually. Rename some methods.Alex Ning10-93/+164
2018-08-05Cancel loading the user's info when there is nobody logging in. Delete a ↵Alex Ning1-141/+141
line which access a deleted string resource in manifest.
2018-08-05Fetch a new access token in onCreate method of MainActivity when the old ↵Alex Ning5-20/+87
access token is about to expire, specifically, to expire within the next 5 minutes or is already expired to avoid refreshing the access token many times by other queries later.
2018-08-05Fetch the subreddit info and save it to the database. Solve a bug that ↵Alex Ning7-36/+125
cannot create a instance of SubredditViewModel.
2018-07-31Preparing to fetch the subreddit info and save it to the database.Alex Ning11-6/+288
2018-07-30Add the ViewSubredditActivity. Add a OnClickListener in the subscribed ↵Alex Ning3-1/+59
subreddits RecyclerView to lauch the ViewSubredditActivity.
2018-07-29Save subscribed subreddits and users to the SQLite database by using Room ↵Alex Ning19-106/+579
Persistence Library. Add a following section in the navigation drawer to display all the followed users. Add a NestedScrollView in the navigation drawer to wrap all the elements. Disable nested scrolling feature in all the RecyclerViews in the navigation drawer.
2018-07-28Add a RecyclerView for subscribed subreddits in navigation drawer, rewrite ↵Alex Ning13-176/+333
some code and minor bugs fixed
2018-07-28Add RecyclerView for subscribed subreddits in navigation drawer and rewrite ↵Alex Ning2-0/+8
some code