1

我正在关注本教程

我已经根据我的应用程序的需要对其进行了修改,例如没有CRUD功能和没有主菜单 - 我只想列出在应用程序启动时执行的主要活动期间的所有项目。

代码似乎没有错误,但运行它给了我:Unfortunately, MyFirstApp has stopped在 VM 中。

LogCat给了我这个:

E/AndroidRuntime(910): java.lang.RuntimeException: 无法启动活动 ComponentInfo{com.example.myfirstproject/com.example.myfirstproject.MainActivity}: java.lang.RuntimeException: 您的内容必须有一个 id 属性为的 ListView 'android.R.id.list'

做什么?我检查了我的 .xml 布局并进行了更改,但应用程序仍然崩溃。

MainActivity.java

package com.example.myfirstproject;

//imports

public class MainActivity extends ListActivity implements OnItemClickListener {

    // Progress Dialog
    private ProgressDialog pDialog;

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

    ArrayList<HashMap<String, String>> carsList;

    // url to get all products list
    private static String url_all_cars = "http://localhost/webservice/get_all_cars.php";

    // JSON Node names
    private static final String TAG_SUCCESS = "success";
    private static final String TAG_CARS = "cars";
    private static final String TAG_NAME = "name";

    // products JSONArray
    JSONArray cars = null;

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

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

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

        // Get listview
        ListView lv = getListView();
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }

    /**
     * Background Async Task to Load all product by making HTTP Request
     * */
    class LoadAllcars extends AsyncTask<String, String, String> {

        /**
         * Before starting background thread Show Progress Dialog
         * */
        @Override
        protected void onPreExecute() {
            super.onPreExecute();
            pDialog = new ProgressDialog(MainActivity.this);
            pDialog.setMessage("Loading cars. Please wait...");
            pDialog.setIndeterminate(false);
            pDialog.setCancelable(false);
            pDialog.show();
        }

        /**
         * 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_cars, "GET", params);

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

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

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

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

                        // Storing each json item in variable
                        String title = c.getString(TAG_NAME);

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

                        // adding each child node to HashMap key => value
                        map.put(TAG_NAME, name);

                        // adding HashList to ArrayList
                        carsList.add(map);
                    }
                } else {
                    // no products found
                    pDialog = new ProgressDialog(MainActivity.this);
                    pDialog.setMessage("No cars found");
                    pDialog.setIndeterminate(false);
                    pDialog.setCancelable(false);
                    pDialog.show();
                }
            } catch (JSONException e) {
                e.printStackTrace();
            }

            return null;
        }

        /**
         * After completing background task Dismiss the progress dialog
         * **/
        protected void onPostExecute(String file_url) {
            // dismiss the dialog after getting all products
            pDialog.dismiss();
            // updating UI from Background Thread
            runOnUiThread(new Runnable() {
                public void run() {
                    /**
                     * Updating parsed JSON data into ListView
                     * */
                    ListAdapter adapter = new SimpleAdapter(
                            MainActivity.this, carsList,
                            android.R.id.list, new String[] {TAG_NAME},
                            new int[] { R.id.title });
                    // updating listview
                    setListAdapter(adapter);
                }
            });

        }
    }
}

activity_main.xml(带有 listview 的 mainactivity 的布局):

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <ListView
        android:id="@+id/list"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1" >
    </ListView>   
</LinearLayout>

list_item.xml(单个列表项的布局):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <!-- Name Label -->
    <TextView
        android:id="@+id/name"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingTop="6dip"
        android:paddingLeft="6dip"
        android:textSize="17dip"
        android:textStyle="bold" />

</LinearLayout>
4

5 回答 5

5

看看他们如何在此处的 ListActivity 文档中定义布局

您的 ListView Id 是android:id="@+id/list"并且它需要是android:id="@android:id/list"

此外,您的 ListAdapter 将会崩溃

ListAdapter adapter = new SimpleAdapter(
                            MainActivity.this, carsList,
                            android.R.id.list, new String[] {TAG_NAME},
                            new int[] { R.id.title });

您正在告诉适配器使用 android ListView 作为项目视图。您应该为此传递您的 list_item.xml ID 并使用正确的 TextView ID(名称)

前任:

ListAdapter adapter = new SimpleAdapter(
                                MainActivity.this, carsList,
                                R.layout.list_item, new String[] {TAG_NAME},
                                new int[] { R.id.name});
于 2012-11-02T21:12:40.863 回答
2

在你的activity_main.xml使用中android:id="@android:id/list",而不是android:id="@+id/list"它应该工作。

现在您的 ListView 的 ID 是yourapplicationpackage.R.id.list.

于 2012-11-02T21:12:49.147 回答
2

android:id="@android:id/list"在 xml 中分配 id 时使用。

于 2012-11-02T21:25:49.343 回答
1

请注意,ListView 的 id必须是根据ListActivity 文档@android:id/list引用所需的。android.R.id.list

相反,您的 id@+id/list会创建一个新的 id com.example.myfirstproject.R.id.list

于 2012-11-02T21:21:22.357 回答
0

这是旧帖子,但对于其他面临同样问题的人来说,这是我的解决方案:

如果您确定,列表视图或您创建的任何其他对象的 ID 存在于布局中 - 要确保转到生成源,请检查 R.java 文件中的 ID 名称。如果它不存在,那么您没有创建任何项目。- 然后,在 Java 代码中确保 android.R 不在导入列表中。如果这样摆脱。然后手动添加你的包 R.java import com.yourpackagename.R; 现在您可以将我们的项目添加到 Java 代码中: exp: ListView lvitems = (ListView) findViewById(R.id.nameofit);

我不建议在这些情况下使用 Project>Clean,您很容易丢失生成的 R.java 文件。

于 2013-10-27T00:10:30.683 回答