Disable touchScreenBlocksFocus on AppBarLayout
For some inexplicable reason this attribute got enabled by default on Android 9, which effectively prevents details screen from working
This commit is contained in:
parent
106e538d08
commit
20bff1389e
|
@ -23,6 +23,7 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@android:color/transparent"
|
||||
android:touchscreenBlocksFocus="false"
|
||||
android:fitsSystemWindows="true"
|
||||
app:elevation="0dp"
|
||||
app:layout_behavior="com.google.android.material.appbar.FlingBehavior">
|
||||
|
|
Loading…
Reference in New Issue