Ensure text field has focus when reporting statuses
This commit is contained in:
parent
c154aaa17d
commit
1040358f3c
1 changed files with 5 additions and 0 deletions
|
@ -71,6 +71,11 @@ class ReportActivity : BottomSheetActivity(), HasAndroidInjector {
|
||||||
|
|
||||||
private fun initViewPager() {
|
private fun initViewPager() {
|
||||||
binding.wizard.isUserInputEnabled = false
|
binding.wizard.isUserInputEnabled = false
|
||||||
|
|
||||||
|
// Odd workaround for text field losing focus on first focus
|
||||||
|
// (unfixed old bug: https://github.com/material-components/material-components-android/issues/500)
|
||||||
|
binding.wizard.offscreenPageLimit = 1
|
||||||
|
|
||||||
binding.wizard.adapter = ReportPagerAdapter(this)
|
binding.wizard.adapter = ReportPagerAdapter(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue