0

如何从 android 中的 xml Web 服务中删除内容!!?我想做 nxt: 1-在将数据从 xml ws 解析到 listView 之后。用户应该选择他想从服务中删除的项目之一!并且活动应该重新加载并显示新列表!我想知道怎么做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);

                            }
                        });
4

1 回答 1

0

应该有一项用于删除项目的服务。因此,当用户单击一个项目时,该项目首先调用 Web 服务以从服务器中删除/删除该项目。然后再次调用 web 服务重新加载列表视图。

于 2012-11-08T07:09:56.593 回答