A Lemmy client forked from the Infinity for Reddit project https://lemdro.id/c/infinityforlemmy
Go to file
Sergei Kozelko 5e3eaafe26
Add view that can lock swipe-to-close gesture (#1140)
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-22 14:37:31 +08:00
.github Add description to Steps to reproduce 2022-09-15 15:40:41 +02:00
app Add view that can lock swipe-to-close gesture (#1140) 2022-10-22 14:37:31 +08:00
fastlane/metadata/android/en-US Add Fastlane file structure for app metadata. 2020-06-21 22:26:03 +02:00
gradle/wrapper Update gradle wrapper (#1006) 2022-09-09 23:24:18 +08:00
.gitignore add VScode 2022-09-14 15:42:07 +02:00
build.gradle Update gradle wrapper (#1006) 2022-09-09 23:24:18 +08:00
gradle.properties Downloading video without sound is now available. Minor bugs fixed. 2019-12-01 20:05:27 +08:00
gradlew Update gradle wrapper (#1006) 2022-09-09 23:24:18 +08:00
gradlew.bat Update gradle wrapper (#1006) 2022-09-09 23:24:18 +08:00
LICENSE Adopt AGPLv3 license 2019-10-29 00:14:05 +08:00
README.md Update README.md 2022-09-16 22:05:51 +08:00
settings.gradle First commit 2018-07-26 23:04:44 +08:00

Infinity For Reddit Patreon

A Reddit client on Android written in Java. It does not have any ads and it features a clean UI and smooth browsing experience


Infinity for Reddit is available on Google Play and F-Droid

Get it on Google Play Get it on F-Droid

release license GitHub issues

Donation

Patreon: https://www.patreon.com/docile_alligator

Bitcoin: bc1qxtkd5ap9na7uy8nr9qpt6jny6tdwaj4v43ddle

Table of Contents

About The Project

Key features of Infinity For Reddit:

  • Lazy mode: Automatic scrolling of posts enables you to enjoy amazing posts without moving your thumb.
  • Browsing posts
  • View comments
  • Expand and collapse comments section
  • Vote posts and comments
  • Save posts
  • Write comments
  • Edit comments and delete comments
  • Submit posts (text, link, image and video)
  • Edit posts (mark and unmark NSFW and spoiler and edit flair) and delete posts
  • See all the subscribed subreddits and followed users
  • View the messages
  • Get notifications of unread messages
  • etc...

Screenshot 1 Screenshot 2 Screenshot 3 Screenshot 4 Screenshot 5 Screenshot 6 Screenshot 7

(back to top)

Contributing

First off, thanks for taking the time to contribute! Contributions are what makes the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request.

Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Here are other ways you can help:

(back to top)

License

Distributed under the AGPL-3.0 License. See LICENSE for more information.

(back to top)

Contact

u/Hostilenemy - docilealligator.app@gmail.com (Owner)

or u/Wladefant - wladefant@gmail.com (Collaborator)

Project Link: https://github.com/Docile-Alligator/Infinity-For-Reddit

(back to top)