26

我有带有正面和负面按钮的 AlertDialog。在 AlertDialog 布局中,我有 EditText 和两个按钮(btnAdd1、btnAdd2)。我希望当用户单击按钮 btnAdd1 或 btnAdd2 时将相同的文本添加到 AlertDialog 中的 EditText(但不关闭 AlertDialog)。这可能在 AlertDialog 中执行,还是我必须只使用 Dialog?

这是 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() 设置为这两个按钮。

4

6 回答 6

57

以下代码将从中膨胀视图R.layout.prompt并将其设置为 AlertDialog。不会使用和positive按钮。negative您可以设置 和的onClick行为:btnAdd1btnAdd2

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();
于 2013-08-21T09:07:31.560 回答
4

你想做的是;

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

使用视图调用findViewById,而不是活动,它将在正在显示的布局中查找 id。

于 2013-08-21T08:29:24.647 回答
3

根据这种方法,我可以创建图像按钮,但如果我想关闭或取消取消按钮上的对话框,那么我必须做什么..

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

            }
        });
于 2015-08-22T06:49:07.633 回答
0

我就是这样做的。

已创建 custom_alert_dialog.xml 文件

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 xmlns:app="http://schemas.android.com/apk/res-auto">

<TextView
    android:id="@+id/text1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Text1"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"/>

<TextView
    android:id="@+id/text2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Text2"
    app:layout_constraintTop_toBottomOf="@+id/text1"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"/>

<Button
    android:id="@+id/button1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="OK"
    app:layout_constraintTop_toBottomOf="@+id/text2"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"/>

</android.support.constraint.ConstraintLayout>

在活动文件中

LayoutInflater layoutInflater = getLayoutInflater();
View alertLayout = layoutInflater.inflate(R.layout.custom_alert_dialog, null);
Button button = alertLayout.findViewById(R.id.button1);

AlertDialog.Builder alertDialog = new AlertDialog.Builder(MainActivity.this);

alertDialog.setCancelable(false);
alertDialog.setView(alertLayout);
AlertDialog dialog = alertDialog.create();
    button.setOnClickListener(new View.OnClickListener(){
        @Override
        public void onClick(View v) {
            dialog.dismiss();
        }
    });
dialog.show();
于 2019-12-14T06:51:56.297 回答
0

我对你的问题的解决方案。

 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();
于 2018-02-27T14:26:26.767 回答
-3

你可以尝试这样的事情:

dialog.setPositiveButton(R.string.positive, new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialogInterface, int i) {
        dialog.show();
    }
});
于 2013-08-21T08:34:08.623 回答