如何從android的xml Web服務中刪除內容!!? 我想要做的nxt:1 - 解析XML文件的數據後,進入listView。用戶應該選擇他想從服務中刪除的項目之一! 和活動應重新加載並顯示新的列表! 我想知道如何remove the Item from the ws
以及如何reload the page
!從xml中刪除內容Web服務
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);
}
});
您需要向Web服務發送請求,實際的通話將取決於您使用的Web服務。它是一個公共API,如果它發佈它是什麼,我/有人會看看。 –
我發送一個請求通過使用:HttpClient httpclient = new DefaultHttpClient(httpParameters); \t \t \t HttpResponse httpResponse; \t \t \t HttpGet httpGet; ??? – user1767371