1

我从数据库中获取第一个数据,列表视图将显示数据。目前,当列表被多次调用时,数据被附加到列表的末尾。

有没有办法清除列表视图,以便新数据再次位于列表视图的顶部

public class AndroidTestActivity extends Activity 
{
    JSONArray jArray;
    String result = null;
    InputStream is = null;
    StringBuilder sb=null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        Button b1 = (Button) findViewById(R.id.button1);
        b1.setOnClickListener(new Button.OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                EditText tv = (EditText) findViewById(R.id.editView);
                ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();

                //http get
                try{
                    HttpClient httpclient = new DefaultHttpClient();
                    HttpGet httpget = new HttpGet("http://192.168.1.132/test.php");
                    HttpResponse response = httpclient.execute(httpget);
                    HttpEntity entity = response.getEntity();
                    is = entity.getContent();
                }catch(Exception e){
                    Log.e("log_tag", "Error in http connection"+e.toString());
                }

                //convert response to string
                try{
                    BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"),8);
                    sb = new StringBuilder();
                    sb.append(reader.readLine() + "\n");

                    String line="0";
                    while ((line = reader.readLine()) != null) {
                        sb.append(line + "\n");
                    }

                    is.close();
                    result=sb.toString();
                }catch(Exception e){
                    Log.e("log_tag", "Error converting result "+e.toString());
                }

                //paring data
                int ct_id;
                String ct_name;        

                try{
                    jArray = new JSONArray(result);
                    JSONObject json_data=null;  

                    for(int i=0;i<jArray.length();i++){
                        json_data = jArray.getJSONObject(i);
                        ct_id=json_data.getInt("id");
                        ct_name=json_data.getString("name");
                        tv.append(ct_name);
                    }
                }catch(JSONException e1){
                //   Toast.makeText(getBaseContext(), "No City Found" ,Toast.LENGTH_LONG).show();
                } catch (ParseException e1) {
                    e1.printStackTrace();
                }
            }
        });
    }
}
4

4 回答 4

0

清除ArryList您在ListView Adapter. 然后再次加载新数据Array/ArrayList并调用adapter.notifyDataSetChanged()方法。

于 2013-10-17T17:01:06.667 回答
0

从您希望清楚的代码中调用这两个方法,这里适配器是您将其添加到列表中的 ArrayAdapter 的一个实例。

adapter.clear()
adapter.notifyDataSetChanged()
于 2013-10-17T17:03:16.483 回答
0

每次创建一个新列表并从其中的数据库中获取数据并仅在此列表中添加旧数据。

于 2013-10-17T17:03:19.650 回答
0

只需写下listView.setAdapter(null)您要清除列表视图的位置..这对我有用..

于 2015-11-18T09:15:10.957 回答