【问题标题】:Edittext inside ExpandableListView does not show keyboardExpandableListView 中的 Edittext 不显示键盘
【发布时间】: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;
}
      });

知道如何显示键盘吗?

【问题讨论】:

    标签: android android-listview


    【解决方案1】:

    我找到了一种解决方法,这确实是一个技巧,因为我真的不知道它为什么会起作用。 我刚刚在 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"
           />
    ......
    

    【讨论】:

    • 但是如果你关闭键盘,当你点击EditText时,键盘会重新出现吗?
    猜你喜欢
    • 2019-03-21
    • 1970-01-01
    • 2013-08-23
    • 2021-01-27
    • 2012-12-15
    • 1970-01-01
    • 2013-04-26
    • 2013-04-20
    相关资源
    最近更新 更多