回答:
EnteronSubmit HTMLイベントのように、EditTextの入力中にユーザーが押す操作を処理する方法があるかどうか疑問に思っています。
はい。
また、「Done」ボタンに別のラベル(「Go」など)が付けられ、クリックすると特定のアクションが実行されるように(onSubmitなど)、仮想キーボードを操作する方法があるかどうかも疑問に思っています。
はい。
android:imeActionId
とandroid:imeOptions
属性、およびsetOnEditorActionListener()
メソッドをすべて確認する必要がありますTextView
。
「完了」ボタンのテキストをカスタム文字列に変更するには、以下を使用します。
mEditText.setImeActionLabel("Custom text", KeyEvent.KEYCODE_ENTER);
final EditText edittext = (EditText) findViewById(R.id.edittext);
edittext.setOnKeyListener(new OnKeyListener() {
public boolean onKey(View v, int keyCode, KeyEvent event) {
// If the event is a key-down event on the "enter" button
if ((event.getAction() == KeyEvent.ACTION_DOWN) &&
(keyCode == KeyEvent.KEYCODE_ENTER)) {
// Perform action on key press
Toast.makeText(HelloFormStuff.this, edittext.getText(), Toast.LENGTH_SHORT).show();
return true;
}
return false;
}
});
enter
エディットテキストをクリックすると、エディットテキスト全体が下に移動します...どうすれば修正できますか?
これがあなたのやることです。また、Android開発者のサンプルコード「Bluetoothチャット」にも隠されています。「例」と書かれている太字部分を独自の変数とメソッドに置き換えます。
最初に、必要なものをメインのアクティビティにインポートします。ここで、戻るボタンで特別なことを実行します。
import android.view.inputmethod.EditorInfo;
import android.widget.TextView;
import android.view.KeyEvent;
次に、戻りキーにTextView.OnEditorActionListener型の変数を作成します(ここではexampleListenerを使用しています)。
TextView.OnEditorActionListener exampleListener = new TextView.OnEditorActionListener(){
次に、戻るボタンが押されたときに何をするかについて、リスナーに2つのことを伝える必要があります。それは私たちが話しているEditTextを知る必要があります(ここではexampleViewを使用します))、Enterキーが押されたときに何をすべきか(ここではexample_confirm())を知る必要があります。これがアクティビティの最後または唯一のEditTextである場合、送信(またはOK、確認、送信、保存など)ボタンのonClickメソッドと同じことを行う必要があります。
public boolean onEditorAction(TextView exampleView, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_NULL
&& event.getAction() == KeyEvent.ACTION_DOWN) {
example_confirm();//match this behavior to your 'Send' (or Confirm) button
}
return true;
}
最後に、リスナーを設定します(おそらくonCreateメソッドで)。
exampleView.setOnEditorActionListener(exampleListener);
KeyEvent.ACTION_UP
ます。これが機能するためには、まずACTION_DOWN
イベントを消費する必要があります:if (actionId == EditorInfo.IME_NULL && event.getAction() == KeyEvent.ACTION_DOWN) { return true; }
。次に、ACTION_UP
イベントを確認してアクションを実行できます(上記の回答と同様)。ACTION_DOWN
イベントを消費しない場合、はonEditorAction
呼び出されませんACTION_UP
。
if (event.getKeyCode() == KeyEvent.KEYCODE_ENTER && event.getAction() == KeyEvent.ACTION_DOWN) {...}
-他のアプローチを機能させることができませんでした
ハードウェアキーボードは常にEnterイベントを生成しますが、ソフトウェアキーボードは、singleLine EditTextで異なるactionIDとnullを返します。このコードは、ユーザーがEditTextまたはキーボードタイプに関係なく、このリスナーが設定されているEditTextでEnterキーを押すたびに応答します。
import android.view.inputmethod.EditorInfo;
import android.view.KeyEvent;
import android.widget.TextView.OnEditorActionListener;
listener=new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView view, int actionId, KeyEvent event) {
if (event==null) {
if (actionId==EditorInfo.IME_ACTION_DONE);
// Capture soft enters in a singleLine EditText that is the last EditText.
else if (actionId==EditorInfo.IME_ACTION_NEXT);
// Capture soft enters in other singleLine EditTexts
else return false; // Let system handle all other null KeyEvents
}
else if (actionId==EditorInfo.IME_NULL) {
// Capture most soft enters in multi-line EditTexts and all hard enters.
// They supply a zero actionId and a valid KeyEvent rather than
// a non-zero actionId and a null event like the previous cases.
if (event.getAction()==KeyEvent.ACTION_DOWN);
// We capture the event when key is first pressed.
else return true; // We consume the event when the key is released.
}
else return false;
// We let the system handle it when the listener
// is triggered by something that wasn't an enter.
// Code from this point on will execute whenever the user
// presses enter in an attached view, regardless of position,
// keyboard, or singleLine status.
if (view==multiLineEditText) multiLineEditText.setText("You pressed enter");
if (view==singleLineEditText) singleLineEditText.setText("You pressed next");
if (view==lastSingleLineEditText) lastSingleLineEditText.setText("You pressed done");
return true; // Consume the event
}
};
singleLine = falseでのEnterキーのデフォルトの外観は、曲がった矢印のEnterキーパッドを提供します。最後のEditTextでsingleLine = trueの場合、キーはDONEを示し、その前のEditTextでNEXTを示します。デフォルトでは、この動作はすべてのバニラ、Android、およびGoogleエミュレータ全体で一貫しています。scrollHorizontal属性は何の違いもありません。ソフト入力に対する電話の応答はメーカーに任されているため、ヌルテストは重要であり、エミュレータでも、バニラレベル16エミュレータは、actionIdがNEXTで、nullがnullの複数行およびscrollHorizontal EditTextで長いソフト入力に応答します。行事。
このページでは、これを行う方法を正確に説明します。
https://developer.android.com/training/keyboard-input/style.html
android:imeOptionsを設定し、actionIdを確認するだけですをです。したがって、imeOptionsを 'actionDone'に設定すると、onEditorActionで 'actionId == EditorInfo.IME_ACTION_DONE'を確認します。また、必ずandroid:inputTypeを設定してください。
上記のリンクの例のEditTextは次のとおりです。
<EditText
android:id="@+id/search"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/search_hint"
android:inputType="text"
android:imeOptions="actionSend" />
setImeOptions(int)関数を使用して、プログラムでこれを設定することもできます。上記のリンクの例のOnEditorActionListenerは次のとおりです。
EditText editText = (EditText) findViewById(R.id.search);
editText.setOnEditorActionListener(new OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
boolean handled = false;
if (actionId == EditorInfo.IME_ACTION_SEND) {
sendMessage();
handled = true;
}
return handled;
}
});
私はこれが1歳であることを知っていますが、これがEditTextに対して完全に機能することを発見しました。
EditText textin = (EditText) findViewById(R.id.editText1);
textin.setInputType(InputType.TYPE_CLASS_TEXT);
それはテキストとスペース以外のものを防ぎます。タブ、「戻る」(「\ n」)、または何もできませんでした。
Chadの応答への補遺(これは私にとってはほぼ完璧に機能しました)と同じように、KeyEventアクションタイプにチェックを追加して、コードが2回(キーアップで1回とキーダウンで1回)実行されないようにする必要があることがわかりましたイベント)。
if (actionId == EditorInfo.IME_NULL && event.getAction() == KeyEvent.ACTION_DOWN)
{
// your code here
}
繰り返しアクションイベント(Enterキーを押す)などについては、http://developer.android.com/reference/android/view/KeyEvent.htmlを参照してください。
私も同じような目的を持っていました。TextViewを拡張するAutoCompleteTextViewで、キーボードの「Enter」キー(カスタマイズしたかった)を押すのを解決したかった。私は上記とは異なる解決策を試しましたが、それらはうまくいったようです。しかし、デバイス(Nexus 4とAOKP ROM)の入力タイプをSwiftKey 3(完全に機能する場所)から標準のAndroidキーボード(リスナーからのコードを処理するのではなく、新しい行)に切り替えると、いくつかの問題が発生しました「Enter」キーを押した後に入力されました。この問題の処理には少し時間がかかりましたが、どの入力タイプを使用しても、すべての状況で機能するかどうかはわかりません。
だからここに私の解決策があります:
xmlのTextViewの入力タイプ属性を「テキスト」に設定します。
android:inputType="text"
キーボードの「Enter」キーのラベルをカスタマイズします。
myTextView.setImeActionLabel("Custom text", KeyEvent.KEYCODE_ENTER);
OnEditorActionListenerをTextViewに設定します。
myTextView.setOnEditorActionListener(new OnEditorActionListener()
{
@Override
public boolean onEditorAction(TextView v, int actionId,
KeyEvent event)
{
boolean handled = false;
if (event.getAction() == KeyEvent.KEYCODE_ENTER)
{
// Handle pressing "Enter" key here
handled = true;
}
return handled;
}
});
これが他の人が私が抱えていた問題を回避するのに役立つことを願っています。
xmlで、imeOptions属性をeditTextに追加します
<EditText
android:id="@+id/edittext_additem"
...
android:imeOptions="actionDone"
/>
次に、Javaコードで、OnEditorActionListenerを同じEditTextに追加します。
mAddItemEditText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if(actionId == EditorInfo.IME_ACTION_DONE){
//do stuff
return true;
}
return false;
}
});
説明は次のとおりです。imeOptions= actionDoneは、EnterKeyに「actionDone」を割り当てます。キーボードのEnterKeyが「Enter」から「Done」に変わります。したがって、Enterキーを押すと、このアクションがトリガーされ、処理されます。
それもできます。
editText.setOnKeyListener(new OnKeyListener() {
@Override
public boolean onKey(View v, int keyCode, KeyEvent event)
{
if (event.getAction() == KeyEvent.ACTION_DOWN
&& event.getKeyCode() == KeyEvent.KEYCODE_ENTER)
{
Log.i("event", "captured");
return false;
}
return false;
}
});
enter
エディットテキストをクリックすると、エディットテキスト全体が下に移動します...どうすれば修正できますか?
password.setOnEditorActionListener(new TextView.OnEditorActionListener() {
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if(event != null && event.getKeyCode() == KeyEvent.KEYCODE_ENTER && event.getAction() == KeyEvent.ACTION_DOWN) {
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, 0);
submit.performClick();
return true;
}
return false;
}
});
私にとってはとてもうまく
いきます
まず、EditTextがキー押下をリッスンするように設定する必要があります
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Set the EditText listens to key press
EditText edittextproductnumber = (EditText) findViewById(R.id.editTextproductnumber);
edittextproductnumber.setOnKeyListener(this);
}
次に、キーを押したときのイベントを定義します。たとえば、TextViewのテキストを設定するイベントです。
@Override
public boolean onKey(View v, int keyCode, KeyEvent event) {
// TODO Auto-generated method stub
// Listen to "Enter" key press
if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER))
{
TextView textviewmessage = (TextView) findViewById(R.id.textViewmessage);
textviewmessage.setText("You hit 'Enter' key");
return true;
}
return false;
}
そして最後に、EditText、TextView、OnKeyListener、KeyEventを先頭にインポートすることを忘れないでください。
import android.view.KeyEvent;
import android.view.View.OnKeyListener;
import android.widget.EditText;
import android.widget.TextView;
完璧に働いています
public class MainActivity extends AppCompatActivity {
TextView t;
Button b;
EditText e;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
b = (Button) findViewById(R.id.b);
e = (EditText) findViewById(R.id.e);
e.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
if (before == 0 && count == 1 && s.charAt(start) == '\n') {
b.performClick();
e.getText().replace(start, start + 1, ""); //remove the <enter>
}
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {}
@Override
public void afterTextChanged(Editable s) {}
});
b.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
b.setText("ok");
}
});
}
}
完璧に働いています
editText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId != 0 || event.getAction() == KeyEvent.ACTION_DOWN) {
// Action
return true;
} else {
return false;
}
}
});
Xml
<EditText
android:id="@+id/editText2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/password"
android:imeOptions="actionGo|flagNoFullscreen"
android:inputType="textPassword"
android:maxLines="1" />
これはうまくいくはずです
input.addTextChangedListener(new TextWatcher() {
@Override
public void afterTextChanged(Editable s) {}
@Override
public void beforeTextChanged(CharSequence s, int start,
int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start,
int before, int count) {
if( -1 != input.getText().toString().indexOf( "\n" ) ){
input.setText("Enter was pressed!");
}
}
});
このコードをエディターに入力して、必要なモジュールをインポートできるようにします。
query.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView textView, int actionId, KeyEvent keyEvent) {
if(actionId == EditorInfo.IME_ACTION_DONE
|| keyEvent.getAction() == KeyEvent.ACTION_DOWN
|| keyEvent.getAction() == KeyEvent.KEYCODE_ENTER) {
// Put your function here ---!
return true;
}
return false;
}
});
これはLG Androidスマートフォンで正常に動作します。ENTER
その他の特殊文字が通常の文字として解釈されるのを防ぎます。Next
またはDone
ボタンが自動的に表示ENTER
され、期待どおりに機能します。
edit.setInputType(InputType.TYPE_CLASS_TEXT);
以下は、ユーザーがハードウェアまたはソフトウェアのキーボードでReturnキーを押したときにコードを実行するクラスUtils
またはKeyboards
クラスに投入できる単純な静的関数です。@earlcasperの優れた答えの修正版です
/**
* Return a TextView.OnEditorActionListener that will execute code when an enter is pressed on
* the keyboard.<br>
* <code>
* myTextView.setOnEditorActionListener(Keyboards.onEnterEditorActionListener(new Runnable()->{
* Toast.makeText(context,"Enter Pressed",Toast.LENGTH_SHORT).show();
* }));
* </code>
* @param doOnEnter A Runnable for what to do when the user hits enter
* @return the TextView.OnEditorActionListener
*/
public static TextView.OnEditorActionListener onEnterEditorActionListener(final Runnable doOnEnter){
return (__, actionId, event) -> {
if (event==null) {
if (actionId == EditorInfo.IME_ACTION_DONE) {
// Capture soft enters in a singleLine EditText that is the last EditText.
doOnEnter.run();
return true;
} else if (actionId==EditorInfo.IME_ACTION_NEXT) {
// Capture soft enters in other singleLine EditTexts
doOnEnter.run();
return true;
} else {
return false; // Let system handle all other null KeyEvents
}
} else if (actionId==EditorInfo.IME_NULL) {
// Capture most soft enters in multi-line EditTexts and all hard enters.
// They supply a zero actionId and a valid KeyEvent rather than
// a non-zero actionId and a null event like the previous cases.
if (event.getAction()==KeyEvent.ACTION_DOWN) {
// We capture the event when key is first pressed.
return true;
} else {
doOnEnter.run();
return true; // We consume the event when the key is released.
}
} else {
// We let the system handle it when the listener
// is triggered by something that wasn't an enter.
return false;
}
};
}
final EditText edittext = (EditText) findViewById(R.id.edittext);
edittext.setOnKeyListener(new OnKeyListener() {
public boolean onKey(View v, int keyCode, KeyEvent event) {
// If the event is a key-down event on the "enter" button
if ((event.getAction() == KeyEvent.ACTION_DOWN) &&
(keyCode == KeyEvent.KEYCODE_ENTER)) {
// Perform action on key press
Toast.makeText(HelloFormStuff.this, edittext.getText(), Toast.LENGTH_SHORT).show();
return true;
}
return false;
}
});
EditTextの<enter>に応答する信頼できる方法は、TextWatcher、LocalBroadcastManager、およびBroadcastReceiverを使用することです。LocalBroadcastManagerを使用するには、v4サポートライブラリを追加する必要があります。私はvogella.comのチュートリアルを使用しています:7.3「LocalBroadcastManagerを使用したローカルブロードキャストイベント」は、完全な簡潔なコード例のためです。onTextChangedのbeforeは、変更前の変更の終了のインデックスです。TextWatcherで、UIスレッドがeditTextの編集可能オブジェクトの更新でビジーであるため、UIスレッドがeditTextの更新を完了したときにBroadcastReceiverをウェイクするインテントを送信します。
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.text.Editable;
//in onCreate:
editText.addTextChangedListener(new TextWatcher() {
public void onTextChanged
(CharSequence s, int start, int before, int count) {
//check if exactly one char was added and it was an <enter>
if (before==0 && count==1 && s.charAt(start)=='\n') {
Intent intent=new Intent("enter")
Integer startInteger=new Integer(start);
intent.putExtra("Start", startInteger.toString()); // Add data
mySendBroadcast(intent);
//in the BroadcastReceiver's onReceive:
int start=Integer.parseInt(intent.getStringExtra("Start"));
editText.getText().replace(start, start+1,""); //remove the <enter>
//respond to the <enter> here
android:inputType="textCapSentences"
:)、改行は入力から除外されるため、ユーザーがEnterキーを押してもonTextChanged()は呼び出されません。
この質問はバターナイフでまだ回答されていません
レイアウトXML
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/some_input_hint">
<android.support.design.widget.TextInputEditText
android:id="@+id/textinput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:imeOptions="actionSend"
android:inputType="text|textCapSentences|textAutoComplete|textAutoCorrect"/>
</android.support.design.widget.TextInputLayout>
JAVAアプリ
@OnEditorAction(R.id.textinput)
boolean onEditorAction(int actionId, KeyEvent key){
boolean handled = false;
if (actionId == EditorInfo.IME_ACTION_SEND || (key.getKeyCode() == KeyEvent.KEYCODE_ENTER)) {
//do whatever you want
handled = true;
}
return handled;
}
Kotlinを使用して、キーボードを含むEditTextのあらゆる種類の「完了」のようなアクションを処理する関数を作成しました。これを変更したり、他のキーを希望どおりに処理したりすることもできます。
private val DEFAULT_ACTIONS_TO_HANDLE_AS_DONE_FOR_EDIT_TEXT = arrayListOf(EditorInfo.IME_ACTION_SEND, EditorInfo.IME_ACTION_GO, EditorInfo.IME_ACTION_SEARCH, EditorInfo.IME_ACTION_DONE)
private val DEFAULT_KEYS_TO_HANDLE_AS_DONE_FOR_EDIT_TEXT = arrayListOf(KeyEvent.KEYCODE_ENTER, KeyEvent.KEYCODE_NUMPAD_ENTER)
fun EditText.setOnDoneListener(function: () -> Unit, onKeyListener: OnKeyListener? = null, onEditorActionListener: TextView.OnEditorActionListener? = null,
actionsToHandle: Collection<Int> = DEFAULT_ACTIONS_TO_HANDLE_AS_DONE_FOR_EDIT_TEXT,
keysToHandle: Collection<Int> = DEFAULT_KEYS_TO_HANDLE_AS_DONE_FOR_EDIT_TEXT) {
setOnEditorActionListener { v, actionId, event ->
if (onEditorActionListener?.onEditorAction(v, actionId, event) == true)
return@setOnEditorActionListener true
if (actionsToHandle.contains(actionId)) {
function.invoke()
return@setOnEditorActionListener true
}
return@setOnEditorActionListener false
}
setOnKeyListener { v, keyCode, event ->
if (onKeyListener?.onKey(v, keyCode, event) == true)
return@setOnKeyListener true
if (event.action == KeyEvent.ACTION_DOWN && keysToHandle.contains(keyCode)) {
function.invoke()
return@setOnKeyListener true
}
return@setOnKeyListener false
}
}
したがって、使用例:
editText.setOnDoneListener({
//do something
})
ラベルの変更については、キーボードアプリに依存していると思います。また、ここに記載されているように、通常は横向きでのみ変更されると思います。とにかく、これの使用例:
editText.imeOptions = EditorInfo.IME_ACTION_DONE
editText.setImeActionLabel("ASD", editText.imeOptions)
または、XMLで必要な場合:
<EditText
android:id="@+id/editText" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:imeActionLabel="ZZZ" android:imeOptions="actionDone" />
そして結果(横に表示):
これらの依存関係を追加すると、機能するはずです。
import android.view.KeyEvent;
import android.view.View;
import android.widget.EditText;
これにより、ユーザーがReturnキーを押したときに呼び出し可能な関数が提供されます。
fun EditText.setLineBreakListener(onLineBreak: () -> Unit) {
val lineBreak = "\n"
doOnTextChanged { text, _, _, _ ->
val currentText = text.toString()
// Check if text contains a line break
if (currentText.contains(lineBreak)) {
// Uncommenting the lines below will remove the line break from the string
// and set the cursor back to the end of the line
// val cleanedString = currentText.replace(lineBreak, "")
// setText(cleanedString)
// setSelection(cleanedString.length)
onLineBreak()
}
}
}
使用法
editText.setLineBreakListener {
doSomething()
}