Created
August 19, 2021 16:54
-
-
Save abhishekBansal/b76072c95dd57751bb57278355f7f517 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// apply touch listener on ViewPager RecyclerView | |
val recyclerView = binding.viewPager[0] as? RecyclerView | |
if (recyclerView != null) { | |
recyclerView.addOnItemTouchListener(swipeControlTouchListener) | |
} else { | |
Log.w(localClassName, "RecyclerView is null, API/Version changed ?!") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment