[android-developers] How can i remove item in listview

2011-09-12 Thread Jhew SAN
listViewInfo = (ListView)findViewById(R.id.listView1); tempListAdapter = new SimpleAdapter(this, weatherlist, R.layout.list_row, new String[] {city, low, high}, new int[] {R.id.CITY_CELL, R.id.LOW_CELL, R.id.HIGH_CELL}); listViewInfo.setAdapter(tempListAdapter);

Re: [android-developers] How can i remove item in listview

2011-09-12 Thread TreKing
On Mon, Sep 12, 2011 at 2:11 AM, Jhew SAN tawisak.ruksu...@gmail.comwrote: This can remove only 1 row You can't just pots a giant block of code and expect people to fix your problem. Explain what you're trying to do. Explain what you have tried to solve your problem. Explain what isn't