3

入力用に 2 つの EditText フィールドを持つカスタム AlertDialog を作成しようとしています。コードは次のとおりです。

void newItemInput(){

    AlertDialog.Builder builder = new AlertDialog.Builder(this);

    LayoutInflater inflater = this.getLayoutInflater();

    builder.setView(inflater.inflate(R.layout.dialog_signin, null));

    builder.setTitle("");
    builder.setMessage("");

    builder.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int whichButton) {

            EditText item_name = (EditText)findViewById(R.id.item_name);
            EditText item_price =(EditText)findViewById(R.id.item_price);

            String text = item_name.getText().toString();
            String text_price = item_price.getText().toString();
            int price = Integer.parseInt(text_price);

            // Do something with value!
            products.add(new Product(text, price, R.drawable.unread, false));

        }
    });
    builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int whichButton) {

        }
    });
    builder.show();
}

AlertDialogが表示され、データを入力できます。しかし、OK を押すと、 text と price を引数として に渡しているときにproducts.add(new Product(text, price, R.drawable.unread, false))、アプリがクラッシュします。レイアウトファイルは次のとおりです。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
    <EditText
        android:id="@+id/item_name"
        android:inputType="text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="16dp"
        android:layout_marginLeft="4dp"
        android:layout_marginRight="4dp"
        android:layout_marginBottom="4dp"/>
    <EditText
        android:id="@+id/item_price"
        android:inputType="number"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="4dp"
        android:layout_marginLeft="4dp"
        android:layout_marginRight="4dp"
        android:layout_marginBottom="16dp"/>
</LinearLayout>

私が間違っていることを教えてください。カスタム ダイアログを使用せず、テキスト フィールドを 1 つだけ使用すると、正常に動作します。しかし、2 つのフィールドが必要ですLayoutInflater

4

2 に答える 2

5

まず、今後 LogCat エラーが発生した場合は、投稿してください。

最善の解決策は、ダイアログを にキャストしてからAlertDialog、それを使用することです。

AlertDialog aDialog = (AlertDialog) dialog; // This will ONLY work if (dialog instanceof AlertDialog)
EditText item_name = (EditText) aDialog.findViewById(R.id.item_name);
EditText item_price =(EditText) aDialog.findViewById(R.id.item_price);

または、上記が機能しない場合は、ビルダーに渡した を保存してView、代わりにそれを使用できます。

同様に、final修飾子を使用して 内にアクセスしますOnClickListener

final View v = inflater.inflate(R.layout.dialog_signin, null);
builder.setView(v);

次に、v.findViewById内にアクセスしOnClickListenerてビューを見つけます。

于 2012-10-10T18:31:15.107 に答える
0

ここで、AlertDialog alertDialog =(AletrDialog)dialog;

EditText item_name = (EditText)**alertDialog **.findViewById(R.id.item_name);

EditText item_price =(EditText)**alertDialog **.findViewById(R.id.item_price);

この方法でダイアログ内のビューを見つける必要があります。

Ericが言及したように、ダイアログはAlertDialogにタイプキャストされる必要があります

于 2012-10-10T18:24:17.673 に答える