• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Android application problem

Hey,

How do I create a editTextView, which allows the user to enter a number, which outputs listview so for example:

1).editTextView: please enter how many answers you are looking for, i.e lets say he is looking for 20

2).User enters the number of answers he is looking for[20]

3). Output: shows 20 user inputs as editText
 
Yes you can specify a custom layout for the rows, this may include an EditText box for example.
 
You can create array of buttons, create it dynamically and programmatically add to layout (view.addView(button)), or create it dynamically, add to arraylist and write own ArrayAdapter for listview.
 
Back
Top Bottom