Monday, 15 September 2014

Android ListView, with EditText ListItem move to Next -



Android ListView, with EditText ListItem move to Next -

i have listview has listitem edittext. simulate long form. 1 time user done entering field, want cursor move next row, i.e. next listitem.

to next button, in listitem xml, set ime alternative next:

<edittext android:id="@+id/input_text" android:layout_width="match_parent" android:layout_height="wrap_content" android:imeoptions="actionnext"/>

the form long on 20 items enter. @ given time 7 rows visible. means 7 listitem rows initialized , reused "convert view". adding above ime option, default implementation would focus next until 7th item , go 1 instead of going 8th item.

how can create next go next item position instead of going 1st?

android android-listview android-ui listadapter

No comments:

Post a Comment