web-dev-qa-db-ja.com

アラートダイアログレイアウトにカスタムボタンを追加するにはどうすればよいですか?

AlertDialogには、ポジティブボタンとネガティブボタンがあります。 AlertDialogレイアウトには、EditTextと2つのボタン(btnAdd1、btnAdd2)があります。ユーザーがボタンbtnAdd1またはbtnAdd2をクリックすると、同じテキストがAlertDialogのEditTextに追加されます(ただし、AlertDialogは閉じられません)。これはAlertDialogで可能ですか、またはダイアログのみを使用する必要がありますか?

これはAlertDialogのレイアウト(R.layout.Prompt)です:

<LinearLayout>
<EditText
    Android:id="@+id/userInput"
    Android:layout_width="match_parent"
    Android:layout_height="wrap_content"
    Android:inputType="text" >

    <requestFocus />
</EditText>

<Button
    Android:id="@+id/btnAdd1"
    Android:layout_width="wrap_content"
    Android:layout_height="wrap_content"
    Android:text="bla" />

<Button
    Android:id="@+id/btnAdd2"
    Android:layout_width="wrap_content"
    Android:layout_height="wrap_content"
    Android:text="bla" />

  </LinearLayout>

そして、これはソースコードです:

    LayoutInflater layoutInflater = LayoutInflater.from(this);
        View promptView = layoutInflater.inflate(R.layout.Prompt, null);

    AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(this);
    alertDialogBuilder.setView(promptView);
    alertDialogBuilder
            .setCancelable(false)
            .setPositiveButton("OK", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {
                              //...

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

    AlertDialog alertD = alertDialogBuilder.create();
    alertD.show();

レイアウトからbtnAdd1とbtnAdd2へのアクセスを取得したい。 OnClickListener()をこれらの2つのボタンに設定します。

22
Pepa Zapletal

次のコードは、R.layout.Promptからビューを膨らませてAlertDialogに設定します。 positiveおよびnegativeボタンは使用されません。 btnAdd1およびbtnAdd2onClick動作を設定できます。

LayoutInflater layoutInflater = LayoutInflater.from(this);
View promptView = layoutInflater.inflate(R.layout.Prompt, null);

final AlertDialog alertD = new AlertDialog.Builder(this).create();

EditText userInput = (EditText) promptView.findViewById(R.id.userInput);

Button btnAdd1 = (Button) promptView.findViewById(R.id.btnAdd1);

Button btnAdd2 = (Button) promptView.findViewById(R.id.btnAdd2);

btnAdd1.setOnClickListener(new OnClickListener() {
    public void onClick(View v) {

        // btnAdd1 has been clicked

    }
});

btnAdd2.setOnClickListener(new OnClickListener() {
    public void onClick(View v) {

        // btnAdd2 has been clicked

    }
});

alertD.setView(promptView);

alertD.show();
41
Vikram

あなたがやりたいことは

alertD.show();
Button button = (Button)promptView.findViewById(R.id.buttonId);
button.setOnClickListener(....)

ビューを使用して、アクティビティではなくfindViewByIdを呼び出します。アクティビティは、表示されているレイアウトでIDを検索します。

4
jcw

このアプローチによると、画像ボタンを作成できますが、[キャンセル]ボタンでダイアログを閉じるかキャンセルする場合は、何をする必要がありますか。

public static void alertDialogShow(final Context context,
            final String resultMobile) {

        LayoutInflater li = LayoutInflater.from(context);
        View promptsView = li.inflate(R.layout.Prompt,
                null);
        AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(
                context, AlertDialog.THEME_DEVICE_DEFAULT_LIGHT);
        // set prompts.xml to alertdialog builder
        alertDialogBuilder.setView(promptsView);
        final EditText userInput = (EditText) promptsView
                .findViewById(R.id.editTextDialogUserInput);
        userInput.setText(resultMobile);
        userInput.setEnabled(false);
btnCancel.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View arg0) {

            }
        });
2
gyan awasthi

あなたの質問に対する私の解決策。

 LayoutInflater layoutInflater = LayoutInflater.from(this);
 View promptView = layoutInflater.inflate(R.layout.Prompt, null);

 AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(this);
 alertDialogBuilder.setView(promptView);

 Button btn_1= (Button)promptView.findViewById(R.id.btnAdd1);
 btn_1.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {

           //do required function
           // don't forget to call alertD.dismiss()

        }
    });


 Button btn_2 = (Button)promptView.findViewById(R.id.btnAdd2);
 btn_2.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {

           //do required function

        }
    });


alertDialogBuilder
        .setCancelable(false)



AlertDialog alertD = alertDialogBuilder.create();
alertD.show();
0
Thein Naing Oo