android - EditText in ExpandableListView parent layout not focusable and expandable together -
i have group layout 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"/>
my list has attribute android:descendantfocusability="beforedescendants"
the problem is, can either let edittext have focus or list item inflates group, not both together.
i´ve tried add android:windowsoftinputmode="adjustpan"
manifest without having effect.
my child views fine, edittext´s working , on.
can please me?
Comments
Post a Comment