ExpandableListView父布局中的EditText不可聚焦和可扩展

时间:2014-03-24 17:13:54

标签: android android-layout android-edittext expandablelistview focusable

我有一个包含EditText和RadioButton的组布局。

enter image description here

  

<EditText
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/editText"
    android:layout_weight="1"
    android:focusable="true"
    android:layout_marginLeft="50dp"/>

<RadioButton
    android:layout_width="60dp"
    android:layout_height="wrap_content"
    android:id="@+id/radioButton"
    android:checked="false"
    android:layout_weight="1"
    android:focusable="false"/>

我的列表包含属性android:descendantFocusability="beforeDescendants"

问题是,我可以让EditText具有焦点,也可以让列表项本身使组膨胀,但不能将两者放在一起。

我曾尝试将android:windowSoftInputMode="adjustPan"添加到清单中而不会产生任何影响。

我的孩子观点都很好,所有的EditText都在工作,等等。

你能帮帮我吗?

0 个答案:

没有答案