我有一个活动,显示餐厅的菜肴清单。列表的每个视图都有一个与其关联的数字选择器。该应用程序运行良好,但是当我启动活动以显示列表时,它崩溃了...

这是我的课程文件。

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

我觉得这与尝试在列表加载之前访问数字选择器有关,并且没有看到它。

最佳答案

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);

关于android - 数字选择器导致应用程序崩溃,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14184571/

10-12 23:29