【发布时间】:2014-05-31 02:25:02
【问题描述】:
我有一个显示 ExpandableListView 的自定义 DialogFragment,它的项目是 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;
}
});
知道如何显示键盘吗?
【问题讨论】: