Android Edittext In Listview - Keyboard
I've got a problem with my EditText. I use the following adapter: public class RowTextViewAdapter extends BaseAdapter { ... public View getView(int position, View convertView,
Solution 1:
If this is still an issue, take a look at this item: Focusable EditText inside ListView
This changes may help.
Change to listview:
<ListView
android:id="@android:id/list"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:descendantFocusability="beforeDescendants"
/>
Change to activity in mainfest.xml:
<activityandroid:name= ".yourActivity"android:windowSoftInputMode="adjustPan"/>
Post a Comment for "Android Edittext In Listview - Keyboard"