我有一个自定义的DialogFragment,它显示一个ExpandableListView,它的项目是EditText。 当EditText获得焦点时,输入键盘不会显示,即使我使用InputMethodManager.FORCED标志通过代码强制它。
DialogFragment XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:descendantFocusability="afterDescendants"
>
...
<ExpandableListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="afterDescendants"
/>
<TextView android:id="@android:id/empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FF0000"
android:text="@string/no_calculations"/>
</LinearLayout>
扩展列表的项目XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
android:background="#ffffff" >
.....
<EditText
android:id="@+id/editTextPercentage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="160dp"
android:layout_marginLeft="16dp"
android:layout_toLeftOf="@id/percentageSymbol"
android:inputType="numberDecimal"
android:textColor="#000000"
android:layout_centerVertical="true"
android:maxLength="8"
android:maxLines="1"
android:focusable="true"
android:focusableInTouchMode="true"
android:text="@string/default_percentage_calculations" >
</EditText>
</RelativeLayout>
的Manifest.xml:
<activity android:windowSoftInputMode="adjustPan">
即使强制键盘,它也不起作用:
final EditText percentage=(EditText) convertView.findViewById(R.id.editTextPercentage);
percentage.setOnTouchListener(new OnTouchListener()
{
@Override
public boolean onTouch(View v, MotionEvent event) {
InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
imm. showSoftInput (percentage, InputMethodManager. SHOW_FORCED);
return false;
}
});
知道如何展示键盘吗?
答案 0 :(得分:2)
我找到了一个解决方法,这真的是一个技巧,因为我不知道它为什么会起作用。 我刚刚在DialogFragment XML的开头添加了一个虚拟的不可见Edittext:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:descendantFocusability="afterDescendants"
>
<EditText
android:id="@+id/dummyEditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="numberDecimal"
android:enabled="false"
android:visibility="gone"
/>
......