java - 如何在ArrayList View 上调用notifyDataSetChanged()?

标签 java android android-listview android-arrayadapter

这是更新并保存后作为结果页面打开的 ArrayList 页面。我想我需要以某种方式刷新,以便它反射(reflect)用户界面上的更改。我尝试过调用notifyDataSetChanged(),但以我的经验水平而言,运气不佳。有人可以告诉我如何实现吗?

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.all_requests);

    requestsList = new ArrayList<HashMap<String, String>>();

    new LoadAllRequests().execute();

    ListView list = getListView();

    list.setOnItemClickListener(new OnItemClickListener() {

        public void onItemClick(AdapterView<?> parent, View view,
                int position, long id) {

            String request_id = ((TextView) view.findViewById(R.id.request_id)).getText().toString();


            Intent in = new Intent(getApplicationContext(),
                    ViewRequestActivity.class);

            in.putExtra(TAG_ID, request_id);


            startActivityForResult(in, 100);
        }
    });

}

// Response from ViewRequestActivity when delete a request reload this page again

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    // if result code 100
    if (resultCode == 100) {            
        Intent intent = getIntent();
        finish();
        startActivity(intent);
    }

}


class LoadAllRequests extends AsyncTask<String, String, String> {



    protected String doInBackground(String... args) {

        List<NameValuePair> params = new ArrayList<NameValuePair>();

        JSONObject json = jParser.makeHttpRequest(url_all_requests, "GET", params);


        Log.d("All Requests: ", json.toString());

        try {

            int success = json.getInt(TAG_SUCCESS);

            if (success == 1) {


                requests = json.getJSONArray(TAG_REQUESTS);


                for (int i = 0; i < requests.length(); i++) {
                    JSONObject c = requests.getJSONObject(i);


                    String request_id = c.getString(TAG_ID);
                    String request_title = c.getString(TAG_TITLE);


                    HashMap<String, String> map = new HashMap<String, String>();

                    // adding each child node to HashMap key => value
                    map.put(TAG_ID, request_id);
                    map.put(TAG_TITLE, request_title);


                    requestsList.add(map);
                }
            } else {


                Intent i = new Intent(getApplicationContext(),
                        NewRequestActivity.class);

                i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                startActivity(i);
            }
        } catch (JSONException e) {
            e.printStackTrace();
        }

        return null;
    }

最佳答案

您需要为 ListView 创建一个适配器。适配器向其提供数据以进行显示。我建议您阅读本教程:

http://www.vogella.com/articles/AndroidListView/article.html

因此,一旦您创建了适配器,然后调用 lv.setAdapter(<adapter>) ,然后您可以调用<adapter>.notifyDataSetChanged() 。这将告诉适配器它需要自行刷新。

关于java - 如何在ArrayList View 上调用notifyDataSetChanged()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11830023/

相关文章:

java - JUnit 测试用例未正确执行

java - 如何告诉 Apache CXF 在 Spring 配置中使用 java.util.Date

android - 如何在 Android 中创建圆形动画?

android - 从android中的10,000个项目列表中选择任何项目

android - 在 ListView 中标记项目(更改背景颜色)时,它会对其他项目重复

Android ListView OnItemClick 更改 View 属性

java - 如何修复 eclipse 插件中的错误版本?

java.lang.ClassNotFoundException : org. apache.poi.ss.formula.udf.IndexedUDFFinder

php - Android:如何从远程服务器获取图像

java - createAppView 无法解析或不是字段