Hi.

please clear the question.....

i am implement listview and each view *(or row).*............
having editlist box.

problem when i trying to get data from all editboxes its takes only first
screen view.(*means getting the value from the first row only  ie index=0*)
here show only 5 views. when scrolling* g=i* get the problem.
please help me?

:::  when clicking the ok button we get the value of edittext in  all  rows
.......


public void onClick(View view)
 {
 for(int i=0;i<editTextList.size();i++)
        {
        String q=editTextList.get(i).getText().toString();
        Toast.makeText(CustomListViewDemo.this, "Value -" + q,
Toast.LENGTH_SHORT).show();
        Log.v(" indela","indela");
        }
 }
 });

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to