我有一个EditText-Field并为它设置了一个OnFocusChangeListener。当它失去焦点时,会调用一个方法,该方法使用数据库中的一个方法检查EditText的值。如果方法的返回值为true,则显示toast,焦点应再次返回EditText。焦点应始终返回EditText并且键盘应该显示,直到方法的返回值为false。
编辑:我想,我还没有完全清楚我的真正问题:屏幕上没有其他项目可以编辑,直到EditText的值被编辑为一个值,这使得方法“checkLiganame (liganame)“返回假。只有EditText-Field应该是可编辑的。
这是我的代码(对我来说不起作用):
final EditText Liganame = (EditText) findViewById(R.id.liganame);
Liganame.setOnFocusChangeListener(new OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus) {
String liganame = Liganame.getText().toString();
if (checkLiganame(liganame)) {
Toast toast = Toast.makeText(CreateTableActivity.this,
"Dieser Liganame ist bereits vergeben",
Toast.LENGTH_SHORT);
toast.show();
Liganame.requestFocus();
}
}
和方法:
public boolean checkLiganame(String liganame) {
boolean found = false;
DatabaseHelper databaseHelper = new DatabaseHelper(this);
SQLiteDatabase db = databaseHelper.getReadableDatabase();
Cursor cursor = db.query("liga", new String[] { "liganame" },
"liganame = '" + liganame + "'", null, null, null, null);
Log.i("Liganame: ", String.valueOf(cursor));
db.close();
if (cursor != null) {
found = true;
}
return found;
}
此代码导致以下结果:在EditText失去焦点后,焦点会跳回EditText,但我无法再编辑文本。
EDIT2:更改了我的代码。情形:
我点击第一个EditText并在其中放入一个String,它已经存在于数据库中。吐司正在展示。现在我不能再编辑我的字符串了。我点击键盘上的“下一步”,焦点停留在第一个EditText上。我尝试编辑我的字符串,但没有任何反应。而是我的新String在第二个EditText中显示。我点击设备的后箭头,然后重新点击第一个和第二个EditText - >没有键盘显示。
这是我的新代码:
public class CreateTableActivity extends Activity implements
OnFocusChangeListener {
private EditText Liganame, Mannschaftsanzahl;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.create_league);
Liganame = (EditText) findViewById(R.id.liganame);
Liganame.setOnFocusChangeListener(this);
Mannschaftsanzahl = (EditText) findViewById(R.id.mannschaftsanzahl);
Mannschaftsanzahl.setOnFocusChangeListener(this);
final Button save_button = (Button) findViewById(R.id.create_tabelle_speichern_button);
OnClickListener mCorkyListener = new OnClickListener() {
public void onClick(View v) {
ButtonClick();
}
};
save_button.setOnClickListener(mCorkyListener);
}
@Override
public void onFocusChange(View v, boolean hasFocus) {
String liganame = Liganame.getText().toString();
if (checkLiganame(liganame)) {
if (Liganame.requestFocus()) {
getWindow()
.setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
Mannschaftsanzahl.clearFocus();
Toast.makeText(CreateTableActivity.this,
"Dieser Liganame ist bereits vergeben",
Toast.LENGTH_SHORT).show();
}
}
}
答案 0 :(得分:219)
只需将此行放在onCreate()
editText.requestFocus();
它对我有用,希望有所帮助
答案 1 :(得分:142)
请求焦点不足以显示键盘。
要获得焦点并显示键盘,您可以编写如下内容:
if(myEditText.requestFocus()) {
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
}
编辑:添加checkLiganame方法后,在答案中添加额外信息。
在checkLiganame方法中,检查游标是否为null。游标将始终返回一个对象,因此检查null不会执行任何操作。但问题出在db.close();
当你关闭数据库连接时,Cursor
变得无效,很可能是无效的。
在获取值后关闭数据库。
您应检查返回的行数是否大于0,而不是检查游标是否为null:if(cursor.getCount()> 0)然后将布尔值设置为true,如果是这样的话。
EDIT2:所以这里有一些如何让它工作的代码。 编辑3:抱歉错误的代码我添加...; S
首先,如果另一个EditText
获得焦点,您需要清除焦点。这可以使用myEditText.clearFocus()
完成。然后在你的onFocusChangeListener中你不应该关心第一个EditText
是否有焦点,所以onFocusChangeListener看起来像这样:
public class MainActivity extends Activity implements OnFocusChangeListener {
private EditText editText1, editText2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText1 = (EditText) findViewById(R.id.editText1);
editText1.setOnFocusChangeListener(this);
editText2 = (EditText) findViewById(R.id.editText2);
editText2.setOnFocusChangeListener(this);
}
@Override
public void onFocusChange(View v, boolean hasFocus) {
String liganame = editText1.getText().toString();
if(liganame.length() == 0) {
if(editText1.requestFocus()) {
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
editText2.clearFocus();
Toast.makeText(MainActivity.this, "Dieser Liganame ist bereits vergeben", Toast.LENGTH_SHORT).show();
}
}
}
}
用您自己的支票替换第一张支票if(liganame.length() == 0)
,然后它应该有效。
请注意,所有EditText视图都应该将onFocusChangeListener
设置为同一个侦听器,就像我在示例中所做的那样。
答案 2 :(得分:49)
Darwind代码没有显示键盘。
这对我有用:
_searchText.requestFocus();
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(_searchText, InputMethodManager.SHOW_IMPLICIT);
如果键盘未显示,请尝试强制:
imm.showSoftInput(_searchText, InputMethodManager.SHOW_FORCED);
答案 3 :(得分:19)
单击按钮时会改变EditText的焦点:
public class MainActivity extends Activity {
private EditText e1,e2;
private Button b1,b2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
e1=(EditText) findViewById(R.id.editText1);
e2=(EditText) findViewById(R.id.editText2);
e1.requestFocus();
b1=(Button) findViewById(R.id.one);
b2=(Button) findViewById(R.id.two);
b1.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
e1.requestFocus();
}
});
b2.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
e2.requestFocus();
}
});
}
}
答案 4 :(得分:9)
这对我有用:
public void showKeyboard(final EditText ettext){
ettext.requestFocus();
ettext.postDelayed(new Runnable(){
@Override public void run(){
InputMethodManager keyboard=(InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
keyboard.showSoftInput(ettext,0);
}
}
,200);
}
隐藏:
private void hideSoftKeyboard(EditText ettext){
InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(ettext.getWindowToken(), 0);
}
答案 5 :(得分:8)
这对我有用,可以设置焦点并显示键盘
EditText userNameText = (EditText) findViewById(R.id.textViewUserNameText);
userNameText.setFocusable(true);
userNameText.setFocusableInTouchMode(true);
userNameText.requestFocus();
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(userNameText, InputMethodManager.SHOW_IMPLICIT);
答案 6 :(得分:8)
如果我们动态创建EditText,那么我们必须设置requestFocus(),如下所示。
EditText editText = new EditText(this);
editText.setWidth(600);
editText.requestFocus();
如果我们已经在xml视图中声明了组件,那么我们必须找到它,我们可以将焦点放在下面。
EditText e1=(EditText) findViewById(R.id.editText1);
e1.requestFocus();
它只将焦点设置到相应的EditText组件。
答案 7 :(得分:6)
mEditText.setFocusableInTouchMode(true);
mEditText.requestFocus();
if(mEditText.requestFocus()) {
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
}
答案 8 :(得分:4)
Button btnClear = (Button) findViewById(R.id.btnClear);
EditText editText1=(EditText) findViewById(R.id.editText2);
EditText editText2=(EditText) findViewById(R.id.editText3);
btnClear.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
editText1.setText("");
editText2.setText("");
editText1.requestFocus();
}
});
答案 9 :(得分:3)
private void requestFocus(View view) {
if (view.requestFocus()) {
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
}
}
//Function Call
requestFocus(yourEditetxt);
答案 10 :(得分:3)
如果在布局膨胀之前尝试调用requestFocus()
,它将返回false。该代码在布局膨胀后运行。如above所述,您不需要200毫秒的延迟。
editText.post(Runnable {
if(editText.requestFocus()) {
val imm = editText.context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager?
imm?.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, 0)
}
})
答案 11 :(得分:1)
对于Xamarin.Android,我创建了此扩展程序。
public static class ViewExtensions
{
public static void FocusEditText(this EditText editText, Activity activity)
{
if (editText.RequestFocus())
{
InputMethodManager imm = (InputMethodManager)activity.GetSystemService(Context.InputMethodService);
imm.ShowSoftInput(editText, ShowFlags.Implicit);
}
}
}
答案 12 :(得分:1)
请在清单上试用此代码
<activity android:name=".EditTextActivity" android:windowSoftInputMode="stateAlwaysVisible">
</activity>
答案 13 :(得分:1)
new OnEditorActionListener(){
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
editText.requestFocus();
//used ******* return true ******
return **true**;
}
}
答案 14 :(得分:1)
我不知道你是否已找到解决方案,但是在再次请求关注后出现编辑问题:
您是否尝试在edittext1上调用方法selectAll()
或setSelection(0)
(如果是emtpy)?
如果这有帮助,请告诉我,所以我会编辑完整解决方案的答案。
答案 15 :(得分:0)
你可以用一行来做到这一点:
yourEditText.RequestFocusFromTouch();
答案 16 :(得分:0)
您可以使用此代码
txt_Mob.setOnFocusChangeListener(new View.OnFocusChangeListener(){
@Override
public void onFocusChange(View view, boolean b) {
if (b){
//IsFocus
}else{
//IsNotFocus
}
}
});
答案 17 :(得分:0)
如果在requestFocus()
中使用onCreate()
会引起键盘敲击不显示的问题,请使用SingleLiveEvent来使用BindingAdapter
并请求焦点在其中。
方法如下:
BindingAdapter
@BindingAdapter("requestFocus")
fun bindRequestFocus(editText: EditText, event: Event<Boolean>?) {
event?.getContentIfNotHandled()?.let {
if (it) editText.requestFocus()
}
}
答案 18 :(得分:0)
我的回答here
正如我在正式文档上阅读的那样,我认为这是最好的答案,只需将View传递给诸如EditText之类的参数,但showSoftKeyboard似乎无法在横向模式下使用
private fun showSoftKeyboard(view: View) {
if (view.requestFocus()) {
val imm = getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
imm.showSoftInput(view, InputMethodManager.SHOW_IMPLICIT)
}
}
private fun closeSoftKeyboard(view: View) {
if (view.requestFocus()) {
val imm = getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
imm.hideSoftInputFromWindow(view.windowToken, InputMethodManager.HIDE_NOT_ALWAYS)
}
}