0

今、私はカスタム Android キーボードを実装しています。また、キーボード内で連絡先を検索するためのテキスト フィールドが必要です。ただし、編集テキストは編集できません。

これがキーボードビューの私のコードです

<LinearLayout
   android:gravity="center_vertical"
   android:orientation="vertical"
   android:layout_width="match_parent"
   android:layout_height="wrap_content">
      <com.google.android.material.textfield.TextInputEditText
           android:id="@+id/name"
           android:focusable="true"
           android:focusableInTouchMode="true"
           android:focusedByDefault="true"
           android:layout_width="match_parent"
           android:layout_height="match_parent"/>

      <android.inputmethodservice.KeyboardView
              android:layout_width="match_parent"
              android:layout_height="265dp"/>
</LinearLayout>

期待される結果

ここに画像の説明を入力

ありがとう

4

0 に答える 0