我有一个显示餐馆菜肴列表的活动。列表的每个视图都有一个与之关联的数字选择器。应用程序运行正常,但是当我启动活动以显示列表时,它崩溃了......
这是我的班级档案。
NumberPicker np;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_starters);
createTestData();
adapter = new MenuItemArrayAdapter(this, starters);
this.setListAdapter(adapter);
np = (NumberPicker)findViewById(R.id.numpick);
np.setMinValue(0);
np.setMaxValue(99);
}
这是我的StartersActivity类的xml布局文件。
<?xml version="1.0" encoding="utf-8"?>
<ListView
android:id="@+id/android:list"
android:layout_width="match_parent"
android:layout_height="670dp">
</ListView>
<TextView
android:id="@android:id/empty"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/empty" />
<include
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
layout="@layout/pricebar" />
这是我列表中行的xml布局文件。
<?xml version="1.0" encoding="utf-8"?>
<NumberPicker
android:id="@+id/numpick"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true" />
<ImageView
android:id="@+id/dishpic"
android:layout_width="140dp"
android:layout_height="150dp"
android:layout_alignBottom="@+id/numpick"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/item_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/reviewBtn"
android:layout_alignParentTop="true"
android:layout_alignRight="@+id/item_price"
android:text="ITEM NAME"
android:textSize="20sp" />
<TextView
android:id="@+id/item_price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/reviewBtn"
android:layout_below="@+id/item_name"
android:layout_marginTop="17dp"
android:layout_toRightOf="@+id/dishpic"
android:text="ITEM PRICE"
android:textSize="20sp" />
<Button
android:id="@+id/reviewBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/dishpic"
android:layout_toLeftOf="@+id/numpick"
android:layout_toRightOf="@+id/dishpic"
android:text="@string/reviewBtn" />
这似乎是引起问题的数字选择器,因为当我拿出以下代码时它会起作用。
np = (NumberPicker)findViewById(R.id.numpick);
np.setMinValue(0);
np.setMaxValue(99);
关于可能出现什么问题的任何想法?错误是空指针异常:
java.lang.RuntimeException:无法启动活动ComponentInfo {com.example.waitron5 / com.example.waitron5.StartersActivity}:java.lang.NullPointerException
我感觉这与在加载列表之前尝试访问数字选择器并且没有看到它有关。
答案 0 :(得分:1)
要在NumberPicker
方法中获取onCreate
,必须在主布局中定义它。因为不是你得到NPE。
这取决于您对NumberPicker
所做的事情,取决于获取它的最佳位置。它必须特定于相关的列表项视图。
答案 1 :(得分:0)
Each view of the list has a number picker associated with it
上述声明让我相信应该在MenuItemArrayAdapter
方法的getView()
中引用和初始化NumberPickers控件,而不是onCreate()
现在如何:
np = (NumberPicker)findViewById(R.id.numpick);
np.setMinValue(0);
np.setMaxValue(99);