0

以下のコードは現在、mysqlデータベースからデータを取得し、それをListViewに表示します。私が探しているのは、アプリケーションがmysqlデータベースを毎分かそこらでチェックして新しいエントリをチェックする方法を見つけることです。現在のListViewにない新しいエントリが見つかった場合は、新しいエントリが追加されます。リストの一番上にあるアイテム。notifyDataSetChanged()についていくつか読んだことがありますが、実際にどのように機能するのか、またはどのように実装するのか理解できないと思います。ヘルプが適用されます。ありがとう!

public class Data extends ListActivity {
    private ArrayList<Feed> posts = new ArrayList<Feed>();
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        new FeedTask().execute();
    }
    private class FeedTask extends AsyncTask<Void, Void, Void> {
        private ProgressDialog progressDialog;
        protected void onPreExecute() {
            progressDialog = ProgressDialog.show(Data.this,"", "Loading. Please wait...", true);
        }
        @Override
        protected Void doInBackground(Void... arg0) {
            try {
                HttpClient httpClient = new DefaultHttpClient();
                HttpPost httpPost = new HttpPost("http://xxxx/livefeed/getdata.php");
                HttpResponse httpResponse = httpClient.execute(httpPost);
                String result = EntityUtils.toString(httpResponse.getEntity());
                JSONArray jArray = new JSONArray(result);
                JSONObject json_data = null;
                for (int i = 0; i < jArray.length(); i++) {
                    json_data = jArray.getJSONObject(i);
                    Feed feed = new Feed();
                    feed.content = json_data.getString("post");
                    feed.time = json_data.getString("post_time");
                    posts.add(feed);
                }
            } 
            catch (Exception e){
                Log.e("ERROR", "Error loading JSON", e);
            }
            return null;
        }
        @Override
        protected void onPostExecute(Void result) {
            progressDialog.dismiss();
            setListAdapter(new FeedListAdaptor(Data.this, R.layout.feed, posts));
        }
    }
    private class FeedListAdaptor extends ArrayAdapter<Feed> {
        private ArrayList<Feed> posts;
        public FeedListAdaptor(Context context,
        int textViewResourceId,
        ArrayList<Feed> items) {
            super(context, textViewResourceId, items);
            this.posts = items;
        }
        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            View v = convertView;
            if (v == null) {
                LayoutInflater vi = (LayoutInflater)
                getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                v = vi.inflate(R.layout.feed, null);
            }
            Feed o = posts.get(position);
            TextView tt = (TextView) v.findViewById(R.id.toptext);
            TextView bt = (TextView) v.findViewById(R.id.bottomtext);
            tt.setText(o.content);
            bt.setText(o.time);
            return v;
        }
    }
    public class Feed {
        String content;
        String time;
    }
}
4

1 に答える 1

0

XMLオブジェクトを解析した後、すべてをローカルSQLデータベースに保存することをお勧めします。そうすれば、コンテンツプロバイダーでLoaderManagerを使用でき、データベースに新しいものが追加されると非同期に更新されます。

それはおそらくあなたの現在のコードのリファクタリングを必要とするでしょうが、それはあなたが探しているものとほぼ同じなので、IMOの価値があります

于 2012-05-12T05:08:17.870 に答える