我有LinearLayout
个EditText
个,所有这些都是以编程方式创建的(不是使用XML布局),特别是没有ID。
当我输入其中一个EditText
时,下一个(相应于焦点)被禁用,然后我按下键盘上的下一个IME按钮,焦点前进到已禁用{ {1}},但我无法输入任何内容。
我期待的是重点推进到下一个启用 EditText
。除了通过EditText
禁用EditText
之外,我还尝试通过edittext.setEnabled(false)
和edittext.setFocusable(false)
禁用其可聚焦性,并设置edittext.setFocusableInTouchMode(false)
输入类型,但无济于事。
任何提示?
谢谢;)
答案 0 :(得分:12)
通过检查键盘从this blog post和子类EditText
找到下一个可聚焦的方式来解决:
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.widget.EditText;
public class MyEditText extends EditText {
public MyEditText(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public MyEditText(Context context, AttributeSet attrs) {
super(context, attrs);
}
public MyEditText(Context context) {
super(context);
}
@Override
public View focusSearch(int direction) {
View v = super.focusSearch(direction);
if (v != null) {
if (v.isEnabled()) {
return v;
} else {
// keep searching
return v.focusSearch(direction);
}
}
return v;
}
}
更多详情:
ViewGroup
focusSearch()
的实施使用FocusFinder,其中addFocusables()
会调用ViewGroup
。 View
的实现测试可见性,而MyEditText
实现测试可聚焦性。既不测试启用状态,也就是我将此测试添加到上面{{1}}的原因。
答案 1 :(得分:2)
我解决了将焦点属性设置为false的问题,而不仅仅是启用的属性:
editText.setEnabled(false);
editText.setFocusable(false);
答案 2 :(得分:0)
见
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;
}
});
这是从http://developer.android.com/training/keyboard-input/style.html#Action抓住的。
如果你可以弄清楚如何关注下一个TextView
,你可以为每个OnEditorActionListener
添加一个TextView
,如果它被禁用,它会将焦点传递给下一个{{1}}