以下是代码
package com.Wase.edittext;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.inputmethod.EditorInfo;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;
import android.widget.Toast;
import com.Wase.edittext.R;
import android.widget.TextView;
public class MyAndroidAppActivity extends Activity {
private EditText edittext;
private EditText edittext1;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my_android_app);
addKeyListener();
edittext.requestFocus();
}
public void addKeyListener() {
// get edittext component
edittext = (EditText) findViewById(R.id.editText);
edittext1 = (EditText) findViewById(R.id.editText1);
// add a keylistener to keep track user input
edittext.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int keyCode, KeyEvent event) {
// if keydown and "enter" is pressed
if(keyCode == EditorInfo.IME_ACTION_GO)
{
edittext1.requestFocus();
return true;
}
edittext1.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView a, int b, KeyEvent c) {
// if keydown and "enter" is pressed
if(b == EditorInfo.IME_ACTION_GO) {
//hide the keyboard
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(edittext.getWindowToken(), 0);
imm.hideSoftInputFromWindow(edittext1.getWindowToken(), 0);
// display a floating message
Toast.makeText(MyAndroidAppActivity.this, edittext.getText().toString() + " " + edittext1.getText().toString(), Toast.LENGTH_SHORT).show();
return true;
}
return false;
} });
return false;
}
});
}
}
此代码第一次不会显示Toast消息。用户必须返回第一个编辑文本。重新键入文本。回到第二个编辑文本并重新输入,然后必须单击转到显示吐司。
请帮忙解决
答案 0 :(得分:1)
试试这样。
public void addKeyListener() {
// get edittext component
edittext = (EditText) findViewById(R.id.editText);
edittext1 = (EditText) findViewById(R.id.editText1);
// add a keylistener to keep track user input
edittext.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int keyCode, KeyEvent event) {
// if keydown and "enter" is pressed
if(keyCode == EditorInfo.IME_ACTION_GO)
{
edittext1.requestFocus();
return true;
}
return false;
} });
edittext1.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView a, int b, KeyEvent c) {
// if keydown and "enter" is pressed
if(b == EditorInfo.IME_ACTION_GO) {
//hide the keyboard
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(edittext.getWindowToken(), 0);
imm.hideSoftInputFromWindow(edittext1.getWindowToken(), 0);
// display a floating message
Toast.makeText(MyAndroidAppActivity.this, edittext.getText().toString() + " " + edittext1.getText().toString(), Toast.LENGTH_SHORT).show();
return true;
}
return false;
} });
}
你的edittext.setOnEditorActionListener方法的括号 - } - 关闭了错误的行。
答案 1 :(得分:0)
public void addKeyListener() {
// get edittext component
edittext = (EditText) findViewById(R.id.editText);
edittext1 = (EditText) findViewById(R.id.editText1);
// add a keylistener to keep track user input
edittext.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int keyCode, KeyEvent event) {
// if keydown and "enter" is pressed
if (keyCode == EditorInfo.IME_ACTION_GO) {
edittext1.requestFocus();
return true;
} else {
return false;
}
}
});
edittext1.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView a, int b, KeyEvent c) {
// if keydown and "enter" is pressed
if (b == EditorInfo.IME_ACTION_GO) {
// hide the keyboard
InputMethodManager imm =
(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(edittext.getWindowToken(), 0);
imm.hideSoftInputFromWindow(edittext1.getWindowToken(), 0);
Toast.makeText(MainActivity.this,
edittext.getText().toString() + " " + edittext1.getText().toString(),
Toast.LENGTH_LONG).show();
return true;
} else {
return false;
}
}
});
}