我有一個AlertDialog
內的充氣佈局。當我提到它的一個視圖時,我得到一個NullpointerException。NullpointerException在充氣查看
ID爲spinner
視圖位於佈局dialog_with_spinner.xml
內:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_root"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/linear"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="20dp">
<TextView
android:id="@+id/info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:text="@string/info_title" />
<Spinner
android:id="@+id/spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:entries="@array/entries"
android:saveEnabled="true"/>
</LinearLayout>
<CheckBox
android:id="@+id/someId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/someString"/>
</LinearLayout>
代碼:
AlertDialog.Builder builder = new AlertDialog.Builder(boxThemeContextWrapper);
LayoutInflater inflater = getLayoutInflater();
builder.setView(inflater.inflate(R.layout.dialog_with_spinner, null))
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int id) {
final Spinner sp = (Spinner) findViewById(R.id.spinner);
int p = sp.getSelectedItemPosition(); // this gets the **NullPointerException**
String[] entryValues = getResources().getStringArray(R.array.entry_values);
final String entry = entryValues[p];
useMyEntryMethod(entry);
}
})
.setNegativeButton(R.string.dialogs_negative, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
//
}
});
builder.show();
我該如何解決這個問題?謝謝。
試試這個'最後的微調SP =(微調)inflater.findViewById(R.id。微調)' – Raghunandan
不能編譯,如下。方法未定義的類型。 – dentex