1

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

这是我的类文件。

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

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

4

2 回答 2

1

NumberPickeronCreate方法中获取它,它必须在主布局中定义。既然不是你得到NPE。

这取决于您如何处理NumberPicker最佳位置来获取它。它必须特定于相关的列表项视图。

于 2013-01-06T17:22:09.543 回答
0

Each view of the list has a number picker associated with it

上面的陈述让我相信 NumberPickers 控件应该MenuItemArrayAdaptergetView()方法中被引用和初始化,而不是onCreate()现在:

np = (NumberPicker)findViewById(R.id.numpick);
np.setMinValue(0);
np.setMaxValue(99);
于 2013-01-06T17:16:52.340 回答