0

当我按下硬件键盘汉堡包图标上的任意键时: 在此处输入图像描述

我怎样才能防止这种情况?

更新:

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

<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那么它会阻止。但是,有没有更优雅的解决方案?

4

1 回答 1

0

我在第一个位置添加了空视图decorView

val focusable = View(context)
focusable.isFocusable = true
val lp = ViewGroup.LayoutParams(1, 1)
(window.decorView as ViewGroup).addView(focusable, 0, lp)
于 2018-03-27T11:26:40.550 回答