aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Swipe to see images in gallery in gallery layout.Docile-Alligator2022-11-143-2/+49
|
* Swipe to view images in a gallery in Card Layout 2.Docile-Alligator2022-11-131-0/+309
|
* Show the current image index in gallery in PostFragment.Docile-Alligator2022-11-121-4/+24
|
* Swipe between gallery images in PostFragment.Docile-Alligator2022-11-122-0/+332
|
* Limit EditText's height in CustomizePostFilterActivity.Docile-Alligator2022-11-082-17/+39
|
* Material Design 3 Switch. Target Sdk 33.Docile-Alligator2022-11-0813-25/+25
|
* Retry loading more posts.Docile-Alligator2022-11-061-0/+1
|
* Minor changes to loading more posts.Docile-Alligator2022-11-051-4/+16
|
* Show status of loading more posts in MorePostsInfoFragment.Docile-Alligator2022-11-051-0/+22
|
* Rename confidence sort to best (#1177)Sergei Kozelko2022-11-031-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
* Add view that can lock swipe-to-close gesture (#1140)Sergei Kozelko2022-10-221-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.
* Ellipsize usernames if they don't fit on one line in a fully collapsed ↵cmp2022-10-081-0/+1
| | | | comment text area. (#1148)
* Fix crash in debug build by using fully qualified class name for ↵Sergei Kozelko2022-09-2510-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.
* Minor bugs fixed.Docile-Alligator2022-09-211-1/+0
|
* Fix reply markdown (#1098)Sergei Kozelko2022-09-211-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>
* Allow parallel installation of debug and release versions (#636)sal0max2022-09-211-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
* Start utilizing view binding (#1013)Taco2022-09-213-24/+24
|
* Fix markdown in rules screen (#1050)Sergei Kozelko2022-09-091-6/+4
| | | | | * Display tables in rules screen * Parse spoiler and headings in rules screen
* Added a clear search bar text button (#1063)MChen3212022-09-091-0/+10
|
* Update ExoPlayer.Docile-Alligator2022-09-082-270/+0
|
* Fix stupid Redgifs API issue.Docile-Alligator2022-09-042-0/+270
|
* Show urls in ShareLinkBottomSheetFragment.Docile-Alligator2022-08-151-0/+29
|
* Apply custom theme to settings page.Docile-Alligator2022-08-156-47/+40
|
* Apply custom theme to the header of the navigation drawer.Docile-Alligator2022-08-141-4/+2
|
* Fix post content is not parsed in other types of posts.Docile-Alligator2022-08-146-0/+60
|
* Fix caption shown under the navbar in ViewRedditGalleryImageOrGifFragment.Docile-Alligator2022-08-131-3/+4
|
* Minor UI tweaks in ViewSubredditDetailActivity, ViewUserDetailActivity and ↵Docile-Alligator2022-07-283-10/+16
| | | | CustomThemePreviewActivity.
* Movable FAB in ViewPostDetailActivity.Docile-Alligator2022-07-181-1/+1
|
* Show the number of subscribers in SubredditListingRecyclerViewAdapter.Docile-Alligator2022-07-151-16/+34
|
* Read posts history is available.Docile-Alligator2022-07-132-0/+102
|
* Use Navigation Rail in MainActivity in landscape mode.Docile-Alligator2022-06-181-0/+4
|
* Add a link handler in SearchActivity.Docile-Alligator2022-06-031-11/+28
|
* Disable auto correct when creating links.Docile-Alligator2022-06-011-2/+4
|
* Request incognito keyboard in anonymous mode on Android 8+.Docile-Alligator2022-06-011-0/+2
|
* Use EditText instead of SimpleSearchView in SearchActivity.Docile-Alligator2022-06-012-23/+19
|
* Animate the software keyboard in ViewPrivateMessgesActivity.Docile-Alligator2022-05-171-59/+58
|
* Tweak UI in private messages.Docile-Alligator2022-05-142-8/+8
|
* Copy priate messages.Docile-Alligator2022-05-132-7/+26
|
* targetSdkVersion 31. Fix sort type problems in anonymous home page and ↵Docile-Alligator2022-04-301-0/+1
| | | | multireddits.
* Submitting crosspost using other accounts is available.Docile-Alligator2022-04-281-0/+27
|
* Submitting comment using another comment is available.Docile-Alligator2022-04-281-5/+29
|
* Submitting posts using another account is available in other PostXXXActivity.Docile-Alligator2022-04-255-0/+135
|
* Submit posts using another account is available in PostTextActivity.Docile-Alligator2022-04-242-0/+42
|
* Show post karma, comment karma, awarder karma and awardee karma in ↵Docile-Alligator2022-04-101-0/+105
| | | | ViewUserDetailActivity by clicking the karma info text.
* Bottom app bar is available in ViewMultiRedditDetailActivity.Docile-Alligator2022-04-082-2/+7
|
* Removed option: View Full Markdown. Handle jpeg link in LinkResolverActivity.Docile-Alligator2022-04-021-19/+0
|
* Render full markdown in CommentsRecyclerViewAdapter.Docile-Alligator2022-04-022-10/+8
|
* Add a FloatingActionButton in ViewMultiRedditDetailActivity.Docile-Alligator2022-03-251-0/+7
|
* Load image after the AspectRatioGifImageView's height is determined in ↵Docile-Alligator2022-03-115-9/+4
| | | | PostRecyclerViewAdapter to prevent blurry images.
* Fix preview issue in PostCompactBaseViewHolder in PostRecyclerViewAdapter.Docile-Alligator2022-03-051-1/+1
|