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

何が問題なのかについてのアイデアはありますか? エラーは null ポインター例外です。

java.lang.RuntimeException: アクティビティ ComponentInfo を開始できません {com.example.waitron5/com.example.waitron5.StartersActivity}: java.lang.NullPointerException

リストがロードされる前にナンバーピッカーにアクセスしようとしていて、それが表示されないことに関係しているように感じます。

4

2 に答える 2

1

メソッドでを取得するNumberPickerにはonCreate、メイン レイアウトで定義する必要があります。それはないので、NPE を取得します。

NumberPickerそれを取得するのに最適な場所がどこであるかによって異なります。問題のリスト アイテム ビューに固有のものである必要があります。

于 2013-01-06T17:22:09.543 に答える
0

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

上記のステートメントから、NumberPickers コントロールは現在MenuItemArrayAdapterの方法ではなく、getView()メソッド内で参照および初期化する必要があると思われます。onCreate()

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