我有一个带有 EditText 和 RadioButton 的组布局。
<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 都在工作等等。
你能帮我么?