1. ホーム
  2. android

[解決済み] 編集テキストへのオートフォーカスを無効にする

2023-05-24 05:45:34

質問

編集テキストがあります。

   <LinearLayout android:id="@+id/linearLayout7" android:layout_width="match_parent" android:layout_height="wrap_content">
        <EditText android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_weight="1" android:id="@+id/editText1" android:text="3">
            <requestFocus></requestFocus>
        </EditText>
        <Button android:text="Button" android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/button2"></Button>
    </LinearLayout>

の下に、他のものもあります。

問題は、アプリの起動時に入力にフォーカスが当たってしまうことです。

を削除してみました。

<requestFocus></requestFocus>

のようなものがあり、それは何もしなかった。

どうしたらいいですか?

を追加します。 android:focusable="true" android:focusableInTouchMode="true" の親レイアウトにある 編集テキスト を以下のように記述します。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linearLayout7" android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:focusable="true" android:focusableInTouchMode="true">

私は、それがあなたの助けになると思います。

こちらもご覧ください。

Android Developers のタッチ操作と入力に関する公式ガイド