我在Android中有一个对话框,作为我使用此文件的布局:
<?xml version="1.0" encoding="utf-8"?> <ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</ListView>
在Activity中我需要为这个ListView添加一个Adapter,我有这个:
@Override
protected Dialog onCreateDialog(int id) {
switch(id){
case ADDPLAYERDIALOG:{
Dialog d = new Dialog(this);
d.setContentView(R.layout.training_dialog);
ListView lv = (ListView) d.getCurrentFocus().getRootView();
ListAdapter adapter = new ArrayAdapter<String>(getBaseContext(), android.R.layout.simple_list_item_1, createNamesList());
lv.setAdapter(adapter);
return d;
}
}
return super.onCreateDialog(id);
}
我在这里得到一个NullPointerException:
ListView lv = (ListView) d.getCurrentFocus().getRootView();
我没有此ListView小部件的ID,因为它是一个布局XML文件,我不能只写lv = d.findViewById(R.id.listview);
我该如何解决这个问题?
答案 0 :(得分:1)
您可以通过xml轻松设置ID。您使用android:id
标记。
您的listview节点应如下所示:
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id = "@+id/listview">
</ListView>
现在您的lv = d.findViewById(R.id.listview);
应该有效。