我正在尝试listView
从数组中填充 a 。但是,当我尝试在我的 java 代码中查找列表视图时,findViewById 函数返回 null。
这是我的 XML:
<RelativeLayout 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:background="@drawable/androidbg_dark"
tools:context=".DiaryActivity" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/lstAppts"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="5"
android:textColor="#FFFFFF" ></ListView>
<LinearLayout
android:layout_width="match_parent"
android:orientation="horizontal"
android:layout_weight="1"
android:layout_height="64dp">
<Button
android:id="@+id/btnOther"
style="?android:attr/buttonBarButtonStyle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="2dip"
android:layout_weight="1"
android:background="@drawable/menu_button"
android:onClick="newAppointment"
android:textColor="#FFFFFF" />
<Button
android:id="@+id/btnOther2"
style="?android:attr/buttonBarButtonStyle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="2dip"
android:layout_weight="1"
android:background="@drawable/menu_button"
android:onClick="newAppointment"
android:textColor="#FFFFFF" />
<Button
android:id="@+id/btnNewAppt"
style="?android:attr/buttonBarButtonStyle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="2dip"
android:layout_weight="1"
android:background="@drawable/menu_button"
android:onClick="newAppointment"
android:text="@string/newappt"
android:textColor="#FFFFFF" />
</LinearLayout>
</LinearLayout>
</RelativeLayout>
这是有问题的代码:
ListView lstAppts = (ListView) findViewById(R.id.lstAppts);
String[] data = { "Appointment 1", "Appointment 2", "Appointment 3" };
ArrayAdapter adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, data);
lstAppts.setAdapter(adapter);
据我所知,我正确地引用了列表视图。它在我的 XML 中被命名为“lstAppts”,在findViewById
函数中,我使用R.id.lstAppts
. 但是,当我使用断点调试代码时,我可以清楚地看到 lstAppts 对象是null
. 为什么是这样?