我很难让我的键盘显示在我的EditText中。当我第一次单击EditText时,键盘显示并正常运行。
当我按后退按钮隐藏键盘并再次单击相同的EditText时,键盘无法显示。我真的很感激任何帮助。相关代码如下。
NewEntry:
assessor.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_DONE) {
InputMethodManager inputMethodManager = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(context.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
EditText email = (EditText) context.findViewById(R.id.email);
email.requestFocus();
return true;
}
布局:
<EditText
android:layout_height="72dp"
android:layout_width="wrap_content"
android:id="@+id/assessor"
android:textColor="@color/black"
android:textSize="20dp"
android:background="@android:color/transparent"
android:fontFamily="sans-serif-light"
android:layout_marginLeft="72dp"
android:layout_marginRight="16dp"
android:hint="Assessor"
android:inputType="text"
android:imeOptions="actionNext"
android:ems="10"
android:windowSoftInputMode="adjustPan"
/>
答案 0 :(得分:0)
试试这个:
为EditText设置一个onClickListener,当它被点击时,它将请求焦点
EditTextName.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
editText.requestFocus();
}
我不知道这是否能解决你的问题,但至少我试过了:P