タグ付けされた質問 「ime」

9
ImeOptionsの完了ボタンのクリックをどのように処理しますか?
EditTextユーザーがEditTextをクリックしたときにキーボードの[完了]ボタンを表示できるように、次のプロパティを設定する場所があります。 editText.setImeOptions(EditorInfo.IME_ACTION_DONE); ユーザーが画面キーボードの完了ボタンをクリックすると(タイピングが終了しました)、RadioButton状態を変更したいと思います。 画面キーボードからヒットした完了ボタンをどのように追跡できますか?

12
EditText imeOptionsをactionNextに設定しても効果がない
かなり複雑な(実際ではない)xmlレイアウトファイルがあります。ビューの1つは、v12つの子を持つLinearLayout(v2)です:EditText()と別のLinearLayout(v3)。次に、子のLinearLayoutにはEditText(v4)とImageView(v5)があります。 EditText v2の場合、私はimeOptionsを持っています android:imeOptions="actionNext" しかし、アプリを実行すると、キーボードreturnがチェックせずnext、に変更したいと思いnextます。この問題を解決するにはどうすればよいですか? また、ユーザーが次にクリックしたときに、フォーカスをEditText v4に移動したいと思います。私はこれをしますか? 本当にいくつかのコードを見る必要がある人のために: <LinearLayout android:id="@+id/do_txt_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/col6" android:orientation="vertical" android:visibility="gone" > <EditText android:id="@+id/gm_title" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="5dp" android:background="@drawable/coldo_text" android:hint="@string/enter_title" android:maxLines="1" android:imeOptions="actionNext" android:padding="5dp" android:textColor="pigc7" android:textSize="ads2" /> <LinearLayout android:layout_width="match_parent" android:layout_height="100dp" android:orientation="horizontal" > <EditText android:id="@+id/rev_text" android:layout_width="0dp" android:layout_height="match_parent" android:layout_gravity="center_vertical" android:layout_margin="5dp" android:layout_weight="1" android:background="@drawable/coldo_text" android:hint="@string/enter_msg" android:maxLines="2" android:padding="5dp" android:textColor="pigc7" android:textSize="ads2" /> <ImageView android:layout_width="wrap_content" …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.