問題タブ [imeoptions]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - プログラムでimeOptions "actionNext" - 次のフィールドにジャンプする方法は?
レイアウト XML では、仮想キーボードにどのボタンandroid:imeOptions="actionNext"
を追加するかを指定でき、Next
それをクリックするとフォーカスが次のフィールドにジャンプします。
これをプログラムで行う方法 - たとえば、次のフィールドに移動するためのイベントトリガーフォーカスに基づいていますか?
android - Listview with edittext - auto scroll on "next"
I have a ListView with one EditText on each row (in addition to a couple of non-editable TextView's). When I'm editing the text in the EditText, the soft keyboard has "Next" button - and pressing it moves the focus to the next field - this is great. On the last row, the button changes to "Done".
I'm using EditText.setImeOptions
to set the button to "Done" or "Next" based on whether this is the last row or not.
The problem is that the listview can have more rows that can fit on the screen. When that happens, pressing "Next" on the next visible row moves the focus onto the first row again. How can I make it scroll the list and go to the next row instead?
For reference, here's what I'm doing in my adapter:
#xA;android - android:imeOptions に関する問題
for をEditText
使用するとandroid:imeOptions が機能しないのはなぜですか? この問題に直面した人は助けてください。setOnClickListner
EditText
私のxmlコード
私のJavaコード
android - GOでキーパッドを開く
こんにちは、[次へ] ボタンと [完了] ボタンの代わりにEditText
、フォーカスがあるときにキーパッドを開きたいと思います。GO
使った
xmlタグに含まれEditText
ていますが、GOではなく矢印のみが表示されています。
前もって感謝します
android - 使い方 2 ソフトキーボードのimeoption
3 つの編集テキストと 2 秒の編集テキストがあるため、両方を表示したいユーザーが前または次の編集テキストに移動できるように、ソフト キーボードで両方のオプションを表示したいのですが、これを行う方法はありますか? ここに私のコードがあります
android - 2 つの異なるが非常によく似たレイアウトを使用すると、android:ImeOptions="ActionNext" が機能しなくなります
次のフィールドに情報を渡すポートレート用とランドスケープ用の 2 つのレイアウトがあります。この 2 つは同一のソース コードを使用しており、同様の XML コードを使用しています。それらの1つは、私が期待する「次へ」ボタンを示し、もう1つは「完了」ボタンを示しています。FrequencyEnterField は FrameLayout です。機能するものは、次の XML コードを使用します。
そして、このコードを使用しないもの:
違いは、水平のものは画面全体にスペースを均等に分割するのに対し、垂直のものはその必要がないためです。何が起こっているのか分かりますか?
android - Android でカスタム キーボードの Enter キー ラベルを変更できない
Android用のカスタムキーボードを設計しています。アプリケーションの一部のフィールドで ENTER キーのカスタム ラベルを作成したいと考えています。キーボードの開発にはサンプル SoftKeyboard プロジェクトを使用しました。私がこれまでに試したこと: 1-私のアクティビティの1つに、次の属性を持つEditTextがあります:
ネイティブの Android キーボードを使用すると、Enter キーに「Sign In」と表示されますが、カスタム キーボードを使用すると、次のステートメントで Enter キーのデフォルト値が表示されます。
LatinKeyboard.java内
誰かがこの問題を解決するのを手伝ってくれれば幸いです。