aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-09-11Continue adding Card Layout 3.Docile-Alligator1-173/+85
2023-09-11Continue adding Card Layout 3.Docile-Alligator1-37/+37
2023-09-11Continue adding Card Layout 3.Docile-Alligator1-80/+0
2023-09-11Continue adding Card Layout 3.Docile-Alligator1-11/+16
2023-09-11Continue adding Card Layout 3.Docile-Alligator1-2/+4
2023-09-11Continue adding Card Layout 3.Docile-Alligator1-2/+2
2023-09-11Continue adding Card Layout 3. Start changing vote button icons.Docile-Alligator1-2/+2
2023-09-10Continue adding Card Layout 3.Docile-Alligator1-13/+13
2023-09-10Continue adding Card Layout 3.Docile-Alligator1-70/+74
2023-09-10Continue adding Card Layout 3.Docile-Alligator1-3/+7
2023-09-10Continue adding Card Layout 3.Docile-Alligator1-3/+6
2023-09-10Continue adding Card Layout 3.Docile-Alligator5-0/+1678
2023-06-22Fix RedditAPIInfoBottomSheetFragment not scrollable.Docile-Alligator1-48/+54
2023-06-20Showing info related to the Reddit API changesDocile-Alligator1-0/+68
2023-05-22Fix https://github.com/Docile-Alligator/Infinity-For-Reddit/issues/1475Docile-Alligator1-0/+1
2023-05-13Fix https://github.com/Docile-Alligator/Infinity-For-Reddit/issues/1448Docile-Alligator1-1/+3
2023-05-07Fix https://github.com/Docile-Alligator/Infinity-For-Reddit/issues/1456Docile-Alligator1-0/+2
2023-05-03Do not render ZoomSurfaceView when pinch to to zoom video is disabled.Docile-Alligator2-13/+55
2023-04-28Fixed gallery images swipe gesture and Slidr gesture conflicts in all places.Docile-Alligator1-2/+2
2023-04-24Show if comments are edited (#1388)Thomas1-0/+12
2023-02-06Revert bottom app bar style.Docile-Alligator1-6/+60
2022-12-29Change the style of the bottom app bar.Docile-Alligator1-60/+6
2022-12-26New option in fab: go to top.Docile-Alligator1-0/+19
2022-12-10Minor UI tweaks.Docile-Alligator2-2/+4
2022-12-03Remove RPAN.Docile-Alligator4-268/+0
2022-12-03Match parent for the bottom app bar in ViewRedditGalleryImageOrGifFragment.Docile-Alligator1-1/+1
2022-12-03Fix bottom app bar not shown in ViewRedditGalleryImageOrGifFragment.Docile-Alligator1-0/+1
2022-11-14Swipe to see gallery images in PostDetailRecyclerViewAdapter.Docile-Alligator2-125/+103
2022-11-14Swipe to see images in gallery in gallery layout.Docile-Alligator3-2/+49
2022-11-13Swipe to view images in a gallery in Card Layout 2.Docile-Alligator1-0/+309
2022-11-12Show the current image index in gallery in PostFragment.Docile-Alligator1-4/+24
2022-11-12Swipe between gallery images in PostFragment.Docile-Alligator2-0/+332
2022-11-08Limit EditText's height in CustomizePostFilterActivity.Docile-Alligator2-17/+39
2022-11-08Material Design 3 Switch. Target Sdk 33.Docile-Alligator13-25/+25
2022-11-06Retry loading more posts.Docile-Alligator1-0/+1
2022-11-05Minor changes to loading more posts.Docile-Alligator1-4/+16
2022-11-05Show status of loading more posts in MorePostsInfoFragment.Docile-Alligator1-0/+22
2022-11-03Rename confidence sort to best (#1177)Sergei Kozelko1-16/+0
* Rename CONFIDENCE comments sort type to BEST and remove old BEST type The Reddit API supports only CONFIDENCE sort type for comments but displays it as BEST. I renamed CONFIDENCE name to Best and added a migration step for loading correct sort type. * Clean up sortType usages in ViewPostDetailFragment Removed unnecessary null checks, object creations and most case conversions
2022-10-22Add view that can lock swipe-to-close gesture (#1140)Sergei Kozelko1-2/+3
Slidr works by adding its own view in the hierarchy and listening to touch events in `onInterceptTouchEvent`. Once it detects movement in the correct direction, it returns `true` and handles all the events itself. Adding scrollable view detection to Slidr would solve the problem, but it is not possible and would probably have performance impact. Fortunately Slidr does not intercept the very first event, which is ACTION_DOWN, and it reaches scrollable view. So the scrollable view itself can decide if it should disallow the swipe. This also has a performance benefit over `OnScrollChangedListener` because the listener is triggered for every scroll of every view even if the child we are interested in did not scroll. On the other hand `on(Intercept)TouchEvent` is triggered only when the view is touched. There is a possibility that swipe won't be unlocked if view never receives ACTION_UP or ACTION_CANCEL. However the docs say nothing about the probability of this happening. Anyways, one possible solution is to post a runnable that will unlock swipe soon after locking.
2022-10-08Ellipsize usernames if they don't fit on one line in a fully collapsed ↵cmp1-0/+1
comment text area. (#1148)
2022-09-25Fix crash in debug build by using fully qualified class name for ↵Sergei Kozelko10-10/+10
layoutmanager (#1130) When the class name is relative, Android tries to resolve it against applicationId. However it does not match the package because of `.debug` suffix so it tries to load the wrong class. This results in ClassNotFoundException and a crash. Using fully qualified class name fixes it as the system can use the class name as is.
2022-09-21Minor bugs fixed.Docile-Alligator1-1/+0
2022-09-21Fix reply markdown (#1098)Sergei Kozelko1-2/+6
* Display comment body the same way as post body when replying There are two views that support markdown, one of them was used to display post titles and comments, the other - post bodies. The views are configured differently even though post and comment bodies should be displayed the same way. Now post and comment bodies are displayed by the same view. * Rename extra keys from TEXT to TITLE Now these extra keys are used only by post title, reflect this in the name. * Remove markdown support from post title view * Fix reply styling Co-authored-by: Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com>
2022-09-21Allow parallel installation of debug and release versions (#636)sal0max1-2/+2
* Allow parallel installation of debug and release versions ...by adding '.debug' suffix to application id * add separate app name resource for debug build
2022-09-21Start utilizing view binding (#1013)Taco3-24/+24
2022-09-09Fix markdown in rules screen (#1050)Sergei Kozelko1-6/+4
* Display tables in rules screen * Parse spoiler and headings in rules screen
2022-09-09Added a clear search bar text button (#1063)MChen3211-0/+10
2022-09-08Update ExoPlayer.Docile-Alligator2-270/+0
2022-09-04Fix stupid Redgifs API issue.Docile-Alligator2-0/+270
2022-08-15Show urls in ShareLinkBottomSheetFragment.Docile-Alligator1-0/+29