show fab button only when shared pref is true. #652
This commit is contained in:
parent
782c525ba9
commit
037bca804e
|
@ -354,6 +354,12 @@ class HomeActivity : BaseActivity(), OnClickListener, OnPageChangeListener, Supp
|
|||
drawerToggleButton.visibility = View.GONE
|
||||
}
|
||||
|
||||
if (preferences.getBoolean(SharedPreferenceConstants.KEY_FAB_VISIBLE)) {
|
||||
actionsButton.visibility = View.VISIBLE
|
||||
} else {
|
||||
actionsButton.visibility = View.GONE
|
||||
}
|
||||
|
||||
homeContent.addOnLayoutChangeListener { v, left, top, right, bottom, oldLeft, oldTop, oldRight, oldBottom ->
|
||||
if (top != oldTop) {
|
||||
val fragment = leftDrawerFragment
|
||||
|
|
Loading…
Reference in New Issue