从硬件键盘请求关键事件中的汉堡包fosuc

时间:2018-03-27 06:05:32

标签: android android-hardware-keyboard

当我按下硬件键盘上的任意键时,汉堡包图标成为焦点: enter image description here

我如何防止这种情况?

更新:

我有一个带工具栏的片段:

<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的空视图,则会阻止。但是,有更优雅的解决方案吗?

1 个答案:

答案 0 :(得分:0)

我将空视图添加到decorView的第一个位置:

val focusable = View(context)
focusable.isFocusable = true
val lp = ViewGroup.LayoutParams(1, 1)
(window.decorView as ViewGroup).addView(focusable, 0, lp)