Fix small issues caused by increasing api level
This commit is contained in:
parent
71bf82ab22
commit
6430ae0e3a
2 changed files with 3 additions and 3 deletions
|
@ -65,7 +65,7 @@ class LiveNowTabFragment : Fragment(), TelegramListener, TelegramIncomingMessage
|
|||
layoutManager = LinearLayoutManager(context)
|
||||
adapter = this@LiveNowTabFragment.adapter
|
||||
addOnScrollListener(object : RecyclerView.OnScrollListener() {
|
||||
override fun onScrollStateChanged(recyclerView: RecyclerView?, newState: Int) {
|
||||
override fun onScrollStateChanged(recyclerView: RecyclerView, newState: Int) {
|
||||
super.onScrollStateChanged(recyclerView, newState)
|
||||
locationUiUpdateAllowed = newState == RecyclerView.SCROLL_STATE_IDLE
|
||||
when (newState) {
|
||||
|
|
|
@ -86,7 +86,7 @@ class MyLocationTabFragment : Fragment(), TelegramListener {
|
|||
appBarOutlineProvider = outlineProvider
|
||||
outlineProvider = null
|
||||
}
|
||||
addOnOffsetChangedListener { appBar, offset ->
|
||||
addOnOffsetChangedListener(AppBarLayout.OnOffsetChangedListener { appBar, offset ->
|
||||
if (appBarScrollRange == -1) {
|
||||
appBarScrollRange = appBar.totalScrollRange
|
||||
}
|
||||
|
@ -97,7 +97,7 @@ class MyLocationTabFragment : Fragment(), TelegramListener {
|
|||
adjustAppbar()
|
||||
optionsBtn.visibility = if (collapsed) View.VISIBLE else View.GONE
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
userImage = mainView.findViewById<ImageView>(R.id.my_location_user_image).apply {
|
||||
|
|
Loading…
Reference in a new issue