I have successfully created edit text depending upon the user input in android. And also assigned them the unique ID's using setId() method.
Now waht I want to do is to get data from the dynamically created edittexts when the user clicks a button and store them in strings .. i.e. Data from edittext having id '1' should be saved in str1 of type String .. and so on depending upon the number of edittexts ..
I am using getid() and gettext().toString() methods but it seems a bit tricky .. i cant assign the data to string vars . . When i do null pointer exception occurs . . and if tats not the case No user input data is shown when i view it in a toast ..
Heres, the code
EditText ed;
for (int i = 0; i < count; i++) {
ed = new EditText(Activity2.this);
ed.setBackgroundResource(R.color.blackOpacity);
ed.setId(id);
ed.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
linear.addView(ed);
}
How do I now pass the value from each edittext to each different String var... If some body could help with the sample code.. it would be a really nice. Thank you ! Already.. :)