我的自定义ListView行使应用程序崩溃?

时间:2016-01-31 18:47:44

标签: android listview android-arrayadapter

Android开发的新手我只是使用标准布局(android.R.layout.simple_list_item_1)搞乱ListViews没问题。

但是当我尝试自定义布局时,我的应用程序在启动时崩溃。

首先是我的文件,所以你可以看到我在做什么(简单的东西只是为了习惯它)

Java文件:

public class MainActivity extends AppCompatActivity {

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

    String[] testArray = {"test1", "test2", "test3", "test4", "test5", "test6", "test7"};

    ListAdapter theAdapter = new ArrayAdapter<String>(this, R.layout.row_layout_new, testArray);
    ListView theListView = (ListView) findViewById(R.id.theListView);
    theListView.setAdapter(theAdapter);

    theListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
            String testArrayPicked = "You selected " +
                    String.valueOf(parent.getItemAtPosition(position));

            Toast.makeText(MainActivity.this, testArrayPicked, Toast.LENGTH_SHORT).show();
        }
    });
 }
}

查看(activity_main.xml):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
android:orientation="vertical"
tools:context=".MainActivity">

<ListView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/theListView">
</ListView>

</LinearLayout>

我的布局文件(row_layout_new.xml):

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

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textStyle="bold"
    android:id="@+id/TextViewNew"/>

</LinearLayout>

在我的Android显示器上,我有以下内容:

E/ArrayAdapter: You must supply a resource ID for a TextView

但是我在行布局中给了TextView一个id。

我观看了一些教程(如Derek Banas youtube频道,如果你们有些人知道的话),他就是以同样的方式做到这一点,但它在我身边崩溃了。

我是否遗漏了一些明显的东西,或者我必须制作自己的ArrayAdapter函数?

4 个答案:

答案 0 :(得分:2)

ListAdapter theAdapter = new ArrayAdapter<String>(this, R.layout.row_layout_new, R.id.TextViewNew, testArray);

您还需要为构造函数提供正确的textview id。

答案 1 :(得分:1)

正如错误所示,您需要将TextView ID传递给ArrayAdapter才能使其正常运行。

更改

ListAdapter theAdapter = new ArrayAdapter<String>(this, R.layout.row_layout_new, testArray);

ListAdapter theAdapter = new ArrayAdapter<String>(this, R.layout.row_layout_new, R.id.TextViewNew, testArray);

答案 2 :(得分:0)

我可能在这方面犯了大错,但我认为如果你想使用LinearLayout作为传递给适配器的资源中的根元素,你必须使用自定义适配器。如果你想坚持使用内置的ArrayAdapter,你需要更改row_layout_new.xml,使它只包含一个TextView。

编辑:或者,如本主题中的另一个答案所述,将LinearLayout中包含的TextView作为ArrayAdapter构造函数的另一个参数提供。

答案 3 :(得分:0)

您应该向适配器提供textView的名称

ListAdapter theAdapter = new ArrayAdapter<String>(this, R.layout.row_layout_new, R.id.TextViewNew, testArray);

ListView(Context context,AttributeSet attrs,int defStyleAttr,int defStyleRes)