1

次のコードは、Android アプリケーションのアクティビティ用です。これはまだアプリケーションの概要であるため、それほど多くは必要ありませんが、基本的な要件が整ったら、さらに設計を進めることができます。

これは私のデータベース ヘルパー クラスです。ローカルホストに送られ、データベースのデータを取得し、それを元に戻してリストビューに表示します。

  package com.example.parking_guide;

public class DBHelper extends ListActivity {

    // Creating JSON Parser object
    JSONParser jParser = new JSONParser();

    ArrayList<HashMap<String, String>> productsList;

    // url to get all products list
    private static final String url_all_products = "http://10.0.2.2/android_connect/get_all_products.php";

    // JSON Node names
    private static final String TAG_SUCCESS = "success";
    private static final String TAG_PRODUCTS = "level1";
    private static final String KEY_ROWID = "_id";
    private static final String KEY_VACANT = "vacancy";

    // products JSONArray
    JSONArray table = null;  

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        @SuppressWarnings("unused")
        ListView yourListView = getListView();



        // Hashmap for ListView
        productsList = new ArrayList<HashMap<String, String>>();

        // Loading products in Background Thread
        new LoadAllProducts().execute();

    }

    /**
     * Background Async Task to Load all product by making HTTP Request
     * */

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


        /**
         * getting All products from url
         * */
        protected String doInBackground(String... args) {
            // Building Parameters
            List<NameValuePair> params = new ArrayList<NameValuePair>();
            // getting JSON string from URL
            JSONObject json = jParser.makeHttpRequest(url_all_products, "GET", params);

            // Check your log cat for JSON reponse
            Log.d("level1", json.toString());

            try {
                // Checking for SUCCESS TAG
                int success = json.getInt(TAG_SUCCESS);

                if (success == 1) {
                    // products found
                    // Getting Array of Products
                    table = json.getJSONArray(TAG_PRODUCTS);

                    // looping through All Products
                    for (int i = 0; i < table.length(); i++) {
                        JSONObject c = table.getJSONObject(i);

                        // Storing each json item in variable
                        String _id = c.getString(KEY_ROWID);
                        String vacant = c.getString(KEY_VACANT);


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


                        // adding each child node to HashMap key => value
                        map.put(KEY_ROWID, _id);
                        map.put(KEY_VACANT, vacant);

                        // adding HashList to ArrayList
                        productsList.add(map);
                    }
                } 
            } catch (JSONException e) {
                e.printStackTrace();
            }

            return null;

        }

        /**
         * After completing background task Dismiss the progress dialog
         * **/
        protected void onPostExecute(String file_url) {


            // updating UI from Background Thread
            runOnUiThread(new Runnable() {
                public void run() {
                    /**
                     * Updating parsed JSON data into ListView
                     * */
                    ListAdapter adapter = new SimpleAdapter(
                            DBHelper.this, productsList,
                            R.layout.list_item, new String[] { KEY_ROWID,
                                    KEY_VACANT},
                            new int[] { R.id.id, R.id.vac});
                    // updating listview
                    setListAdapter(adapter);
                }
            });

        }

    }
  }'

このコードは問題なく実行できますが、私のアプリケーションでは後でこれが可能な限りリアルタイム サーバーに近い状態で動作するか、少なくともそうなるようにする必要があります。そのため、画面上のデータを最新の状態に保つために、数秒後 (おそらく 5 秒未満) にデータを更新する必要があります。タイマーとハンドラーについて読んだことがありますが、これらの概念を実際に把握することはできません。誰でも私を助けることができますか?

4

1 に答える 1

1

ListAdapterをBaseAdapterに変更します。
そして、 adapter.notifyDataSetChanged();を追加します。UIでは、パフォーマンスを向上させるためにonCreateでコメント付きのコードを指定できます

パブリッククラスDBHelperはListActivityを拡張します{

// Creating JSON Parser object
JSONParser jParser = new JSONParser();

ArrayList<HashMap<String, String>> productsList;

// url to get all products list
private static final String url_all_products = "http://10.0.2.2/android_connect/get_all_products.php";

// JSON Node names
private static final String TAG_SUCCESS = "success";
private static final String TAG_PRODUCTS = "level1";
private static final String KEY_ROWID = "_id";
private static final String KEY_VACANT = "vacancy";

// products JSONArray
JSONArray table = null;  

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    @SuppressWarnings("unused")
    ListView yourListView = getListView();



    // Hashmap for ListView
    productsList = new ArrayList<HashMap<String, String>>();

BaseAdapter adapter = new SimpleAdapter(
                    DBHelper.this, productsList,
                    R.layout.list_item, new String[] { KEY_ROWID,
                            KEY_VACANT},
                    new int[] { R.id.id, R.id.vac});
             updating listview
            setListAdapter(adapter);

    // Loading products in Background Thread
    new LoadAllProducts().execute();

}

/**
 * Background Async Task to Load all product by making HTTP Request
 * */

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


    /**
     * getting All products from url
     * */
    protected String doInBackground(String... args) {
        // Building Parameters
        List<NameValuePair> params = new ArrayList<NameValuePair>();
        // getting JSON string from URL
        JSONObject json = jParser.makeHttpRequest(url_all_products, "GET", params);

        // Check your log cat for JSON reponse
        Log.d("level1", json.toString());

        try {
            // Checking for SUCCESS TAG
            int success = json.getInt(TAG_SUCCESS);

            if (success == 1) {
                // products found
                // Getting Array of Products
                table = json.getJSONArray(TAG_PRODUCTS);

                // looping through All Products
                for (int i = 0; i < table.length(); i++) {
                    JSONObject c = table.getJSONObject(i);

                    // Storing each json item in variable
                    String _id = c.getString(KEY_ROWID);
                    String vacant = c.getString(KEY_VACANT);


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


                    // adding each child node to HashMap key => value
                    map.put(KEY_ROWID, _id);
                    map.put(KEY_VACANT, vacant);

                    // adding HashList to ArrayList
                    productsList.add(map);
                }
            } 
        } catch (JSONException e) {
            e.printStackTrace();
        }

        return null;

    }

    /**
     * After completing background task Dismiss the progress dialog
     * **/
    protected void onPostExecute(String file_url) {


        // updating UI from Background Thread
        runOnUiThread(new Runnable() {
            public void run() {
             adapter.notifyDataSetChanged();
            }
        });

    }

}

} '

于 2012-10-08T04:33:30.307 に答える