I am tyring to accomplish a part of my app where the user can input a maximum number of 10 players names but each name will be limited to a maximum of 12 characters. Once the user has inputed each name they will start to appear next to the input box in a kind of listview (not sure if this would be the best way) with a remove button. Also when each name is enterd I need that to have been saved into a string/array as these names will need to been showen in the next Activity.
My question is does anybody have any experience with this or any suggestions as where to start?
Not sure what kind of input method I should be using would a EditText be OK?
<EditText
android:id="@+id/userinput"
android:layout_width="190dp"
android:layout_height="40dp" >
<requestFocus />
</EditText>
Also I have been reading around differernt methods such as SoftKeyboard or the InputMethodService class just not sure where to start with this?