Androidのxml Webサービスからコンテンツを削除するにはどうすればよいですか!!? nxt: 1-xml ws から listView にデータを解析した後。ユーザーは、サービスから削除したい項目の 1 つを選択する必要があります。アクティビティがリロードされ、新しいリストが表示されます! remove the Item from the ws
方法と方法が知りたいですreload the page
!!
ListAdapter getCourseAdapter= new SimpleAdapter(this,coursesList,R.layout.taken_list,
new String[] {"code","creditHours","name"}, new int[]
{R.id.t3,R.id.hrs,R.id.desc});
coursesLV.setAdapter(getCourseAdapter);
coursesLV.setOnItemClickListener(new OnItemClickListener(){
public void onItemClick(AdapterView<?> arg0, View arg1, final int arg2,
long arg3) {
// TODO Auto-generated method stub
coursesList.remove(this);
}
});