Fix some views being click-through-able

This commit is contained in:
arkon 2021-07-03 11:11:34 -04:00
parent 83588e14d9
commit fe3b36caeb
2 changed files with 9 additions and 3 deletions

View File

@ -78,7 +78,9 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="bottom" android:layout_gravity="bottom"
android:clickable="true"
app:layout_insetEdge="bottom" app:layout_insetEdge="bottom"
app:menu="@menu/main_nav" /> app:menu="@menu/main_nav"
tools:ignore="KeyboardInaccessibleWidget" />
</androidx.coordinatorlayout.widget.CoordinatorLayout> </androidx.coordinatorlayout.widget.CoordinatorLayout>

View File

@ -97,8 +97,10 @@
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" android:layout_weight="1"
android:background="@drawable/reader_seekbar_background" android:background="@drawable/reader_seekbar_background"
android:clickable="true"
android:paddingStart="8dp" android:paddingStart="8dp"
android:paddingEnd="8dp"> android:paddingEnd="8dp"
tools:ignore="KeyboardInaccessibleWidget">
<TextView <TextView
android:id="@+id/left_page_text" android:id="@+id/left_page_text"
@ -150,7 +152,9 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize" android:layout_height="?attr/actionBarSize"
android:layout_gravity="bottom" android:layout_gravity="bottom"
android:background="?attr/colorToolbar"> android:background="?attr/colorToolbar"
android:clickable="true"
tools:ignore="KeyboardInaccessibleWidget">
<ImageButton <ImageButton
android:id="@+id/action_reading_mode" android:id="@+id/action_reading_mode"