我如何防止这种情况?
更新:
我有一个带工具栏的片段:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
android:layout_gravity="center"
android:gravity="center">
<ImageView
android:id="@+id/toolbarLogo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"/>
<TextView
android:id="@+id/toolbarTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"/>
<ImageView
android:id="@+id/toolbarTitleMenu"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:paddingEnd="16dp"
android:paddingStart="16dp"/>
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
</RelativeLayout>
看起来汉堡包视图是第一个可关注的视图。如果我在focusable=true
之前添加AppBarLayout
的空视图,则会阻止。但是,有更优雅的解决方案吗?
答案 0 :(得分:0)
我将空视图添加到decorView
的第一个位置:
val focusable = View(context)
focusable.isFocusable = true
val lp = ViewGroup.LayoutParams(1, 1)
(window.decorView as ViewGroup).addView(focusable, 0, lp)