Add ability to scroll to top by tab click at the Account activity (#1146)

* Issue: tuskyapp#1078
Add ability to scroll to top by tab click at the Account activity

* Fix issue with scroll tabs other than current

* Update scroll on click behavior

* Update code formatting

* Remove unused code

* Move tab click listener from Fragments to Activities
This commit is contained in:
pandasoft0 2019-04-08 16:40:16 +03:00 committed by Konrad Pozniak
commit 01234bb94b
8 changed files with 146 additions and 108 deletions

View file

@ -0,0 +1,11 @@
package com.keylesspalace.tusky.interfaces
/**
* Created by pandasoft (joelpyska1@gmail.com) on 04/04/2019.
*/
interface ReselectableFragment {
/**
* Call this method when tab reselected
*/
fun onReselect()
}