[android-developers] Re: Problem related with EditText used in Listview

2010-12-16 Thread Alok Kulkarni
The solution worked for me. Only thing to was to add following code in getView if (attitude_values[position] != null) { holder.TextEntry.setText(attitude_values[position]); } else { holder.TextEntry.setText(""); } On Tue, Dec 14, 2010 at 11:28 PM, Alok Kulkarni wrote: > Apparentl

[android-developers] Re: Problem related with EditText used in Listview

2010-12-14 Thread Alok Kulkarni
Apparently , i found this link http://stackoverflow.com/questions/4358342/edittext-in-a-list-arent-working-the-way-they-should Ill chech if this works, Thanks, Alok On 12/14/10, Alok Kulkarni wrote: > I am using a ListView wherein my listitem.xml contains a TextView and > an EditText. > If my lis