输入文字对话框Android


298

当用户单击Button我的应用程序(显示为SurfaceView)中的时,我希望Dialog显示文本,并将结果存储在中String。我希望文字Dialog覆盖当前屏幕。我怎样才能做到这一点?

Answers:


585

听起来是使用AlertDialog的好机会。

就我看来,Android基本没有内置的对话框(据我所知)。幸运的是,除了创建标准AlertDialog之外,它还只是一些额外的工作。您只需要创建一个EditText供用户输入数据,并将其设置为AlertDialog的视图即可。您可以根据需要使用setInputType自定义允许的输入类型。

如果您可以使用成员变量,则只需将变量设置为EditText的值,并且在关闭对话框后该变量将保留。如果您不能使用成员变量,则可能需要使用侦听器将字符串值发送到正确的位置。(如果您需要的话,我可以编辑和详细说明)。

在您的课程中:

private String m_Text = "";

在按钮的OnClickListener中(或从那里调用的函数中):

AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Title");

// Set up the input
final EditText input = new EditText(this);
// Specify the type of input expected; this, for example, sets the input as a password, and will mask the text
input.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
builder.setView(input);

// Set up the buttons
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() { 
    @Override
    public void onClick(DialogInterface dialog, int which) {
        m_Text = input.getText().toString();
    }
});
builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
        dialog.cancel();
    }
});

builder.show();

1
我有一个不断更新和呈现屏幕对象的线程,并在屏幕对象的update方法内调用builder.show()方法。
路加·泰勒

1
哦。如果您使用的是辅助线程,请尝试将builder.show(); 使用runOnUiThread进行调用,类似于以下示例:stackoverflow.com/a/3134720/1098302也许最好将上面的所有代码(创建AlertDialog)放在单独的方法中,然后从runOnUiThread中调用该方法。
亚伦2012年

2
谢谢。那很好。但是,有一个小问题。需要声明global Context, Context cont;,然后在Alertdialog中用替换“ this” cont。AlertDialog.Builder builder =新的AlertDialog.Builder(cont); 最终的EditText输入=新的EditText(cont);

8
我认为除了为上下文创建全局变量外,还可以传递如下上下文:“ MainActivity.this”(您需要将文本“ MainActivity”替换为要使用的活动类名称)。
kunal18 2014年

3
可能值得注意的是,就像大多数Android UI一样,这都是异步的……这意味着它不会等待用户点击“确定”,除非您有进入下一步的门……
ewall

101

我将在@Aaron的答案中添加一种方法,使您有机会以更好的方式设置对话框的样式。这是一个调整后的示例:

AlertDialog.Builder builder = new AlertDialog.Builder(getContext());
builder.setTitle("Title");
// I'm using fragment here so I'm using getView() to provide ViewGroup
// but you can provide here any other instance of ViewGroup from your Fragment / Activity
View viewInflated = LayoutInflater.from(getContext()).inflate(R.layout.text_inpu_password, (ViewGroup) getView(), false);
// Set up the input
final EditText input = (EditText) viewInflated.findViewById(R.id.input);
// Specify the type of input expected; this, for example, sets the input as a password, and will mask the text
builder.setView(viewInflated);

// Set up the buttons
builder.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
        dialog.dismiss();
        m_Text = input.getText().toString();
    }   
}); 
builder.setNegativeButton(android.R.string.cancel, new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
        dialog.cancel();
    }   
}); 

builder.show();

这是用于创建EditText对话框的示例布局:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="@dimen/content_padding_normal">

    <android.support.design.widget.TextInputLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <AutoCompleteTextView
            android:id="@+id/input"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="@string/hint_password"
            android:imeOptions="actionDone"
            android:inputType="textPassword" />

    </android.support.design.widget.TextInputLayout>
</FrameLayout>

最终结果:

EditText对话框示例


10
极好的解决方案!我只是换getView()了个findViewById(android.R.id.content),一切都像魅力一样。非常感谢您的分享:)
Atul,2013年

切记使用(ViewGroup)!强制转换findViewById !
Martin Erlic

2
“此处不允许使用元素AutoCompleteTextView ...”
JaroslavZáruba17年

1
@JPerk:android.R.id.content提供了视图的根元素。请参考此内容:stackoverflow.com/a/12887919/1911652
Atul

1
只是想知道,但是价值@dimen/content_padding_normal何在?
Edric '18 -10-1

62

这个例子怎么样?看起来很简单。

final EditText txtUrl = new EditText(this);

// Set the default text to a link of the Queen
txtUrl.setHint("http://www.librarising.com/astrology/celebs/images2/QR/queenelizabethii.jpg");

new AlertDialog.Builder(this)
  .setTitle("Moustachify Link")
  .setMessage("Paste in the link of an image to moustachify!")
  .setView(txtUrl)
  .setPositiveButton("Moustachify", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int whichButton) {
      String url = txtUrl.getText().toString();
      moustachify(null, url);
    }
  })
  .setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int whichButton) {
    }
  })
  .show(); 

3
与亚伦(Aaron's)几乎相同,但将建造者拴在一起。个人喜好都很好。
Scott Biggs

12

如果你想在一定的空间leftrightinput观点,你可以添加一些填充像

private fun showAlertWithTextInputLayout(context: Context) {
    val textInputLayout = TextInputLayout(context)
    textInputLayout.setPadding(
        resources.getDimensionPixelOffset(R.dimen.dp_19), // if you look at android alert_dialog.xml, you will see the message textview have margin 14dp and padding 5dp. This is the reason why I use 19 here
        0,
        resources.getDimensionPixelOffset(R.dimen.dp_19),
        0
    )
    val input = EditText(context)
    textInputLayout.hint = "Email"
    textInputLayout.addView(input)

    val alert = AlertDialog.Builder(context)
        .setTitle("Reset Password")
        .setView(textInputLayout)
        .setMessage("Please enter your email address")
        .setPositiveButton("Submit") { dialog, _ ->
            // do some thing with input.text
            dialog.cancel()
        }
        .setNegativeButton("Cancel") { dialog, _ ->
            dialog.cancel()
        }.create()

    alert.show()
}

dimens.xml

<dimen name="dp_19">19dp</dimen>

希望对你有帮助


什么resources
塞巴斯蒂安·帕尔玛

5

我发现它扩展AlertDialog.Builder创建自定义对话框类更干净,更可重用。这是一个对话框,要求用户输入电话号码。也可以通过setNumber()在拨打电话之前拨打电话来提供预设的电话号码show()

InputSenderDialog.java

public class InputSenderDialog extends AlertDialog.Builder {

    public interface InputSenderDialogListener{
        public abstract void onOK(String number);
        public abstract void onCancel(String number);
    }

    private EditText mNumberEdit;

    public InputSenderDialog(Activity activity, final InputSenderDialogListener listener) {
        super( new ContextThemeWrapper(activity, R.style.AppTheme) );

        @SuppressLint("InflateParams") // It's OK to use NULL in an AlertDialog it seems...
        View dialogLayout = LayoutInflater.from(activity).inflate(R.layout.dialog_input_sender_number, null);
        setView(dialogLayout);

        mNumberEdit = dialogLayout.findViewById(R.id.numberEdit);

        setPositiveButton("OK", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int id) {
                if( listener != null )
                    listener.onOK(String.valueOf(mNumberEdit.getText()));

            }
        });

        setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int id) {
                if( listener != null )
                    listener.onCancel(String.valueOf(mNumberEdit.getText()));
            }
        });
    }

    public InputSenderDialog setNumber(String number){
        mNumberEdit.setText( number );
        return this;
    }

    @Override
    public AlertDialog show() {
        AlertDialog dialog = super.show();
        Window window = dialog.getWindow();
        if( window != null )
            window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
        return dialog;
    }
}

dialog_input_sender_number.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"
    android:padding="10dp">

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        android:paddingBottom="20dp"
        android:text="Input phone number"
        android:textAppearance="@style/TextAppearance.AppCompat.Large" />

    <TextView
        android:id="@+id/numberLabel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toBottomOf="@+id/title"
        app:layout_constraintLeft_toLeftOf="parent"
        android:text="Phone number" />

    <EditText
        android:id="@+id/numberEdit"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toBottomOf="@+id/numberLabel"
        app:layout_constraintLeft_toLeftOf="parent"
        android:inputType="phone" >
        <requestFocus />
    </EditText>

</android.support.constraint.ConstraintLayout>

用法:

new InputSenderDialog(getActivity(), new InputSenderDialog.InputSenderDialogListener() {
    @Override
    public void onOK(final String number) {
        Log.d(TAG, "The user tapped OK, number is "+number);
    }

    @Override
    public void onCancel(String number) {
        Log.d(TAG, "The user tapped Cancel, number is "+number);
    }
}).setNumber(someNumberVariable).show();

4

@LukeTaylor:目前我手头有相同的任务(创建一个包含EditText的弹出窗口/对话框)。就
我个人而言,我发现完全动态的路线在创造力方面有些限制。

完全自定义对话框布局:您可以完全自定义对话框,

而不是完全依赖于Code来创建对话框,如下所示:

1)-创建一个新Layout Resource文件。这将充当您的对话框,从而具有完全的创作自由!
注意:请参考《材料设计指南》以帮助保持物品清洁和正确。

2)-为您的所有View元素提供ID 。在下面的示例代码中,我有1 EditText和2 Buttons

3)-使用创建Activity一个Button,以进行测试。.我们将其充气,然后启动您的Dialog!

public void buttonClick_DialogTest(View view) {

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

    //  Inflate the Layout Resource file you created in Step 1
    View mView = getLayoutInflater().inflate(R.layout.timer_dialog_layout, null);

    //  Get View elements from Layout file. Be sure to include inflated view name (mView)
    final EditText mTimerMinutes = (EditText) mView.findViewById(R.id.etTimerValue);
    Button mTimerOk = (Button) mView.findViewById(R.id.btnTimerOk);
    Button mTimerCancel = (Button) mView.findViewById(R.id.btnTimerCancel);

    //  Create the AlertDialog using everything we needed from above
    mBuilder.setView(mView);
    final AlertDialog timerDialog = mBuilder.create();

    //  Set Listener for the OK Button
    mTimerOk.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick (View view) {
            if (!mTimerMinutes.getText().toString().isEmpty()) {
                Toast.makeText(MainActivity.this, "You entered a Value!,", Toast.LENGTH_LONG).show();
            } else {
                Toast.makeText(MainActivity.this, "Please enter a Value!", Toast.LENGTH_LONG).show();
            }
        }
    });

    //  Set Listener for the CANCEL Button
    mTimerCancel.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick (View view) {
            timerDialog.dismiss();
        }
    });

    //  Finally, SHOW your Dialog!
    timerDialog.show();


    //  END OF buttonClick_DialogTest
}


小菜一碟!完全的创作自由!只要确保遵循材料准则即可;)

我希望这对某人有帮助!让我知道你们的想法!


2
只是好奇为什么(-1)会投票?我提供的逻辑完全按照预期和描述的方式工作。.我认为这是对这篇文章的很好补充,尚未提及,它是一种完美的替代解决方案。但是,如果您出于正当理由对我提供的信息不满意,请提供一些说明您这样做的原因,这样对我会有所帮助,这样我自己和其他人就可以了解和理解其原因。在学习过程中很有用和有帮助-但只有在背后有具体背景的情况下。
Studio2bDesigns

4

对我有用

private void showForgotDialog(Context c) {
        final EditText taskEditText = new EditText(c);
        AlertDialog dialog = new AlertDialog.Builder(c)
                .setTitle("Forgot Password")
                .setMessage("Enter your mobile number?")
                .setView(taskEditText)
                .setPositiveButton("Reset", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        String task = String.valueOf(taskEditText.getText());
                    }
                })
                .setNegativeButton("Cancel", null)
                .create();
        dialog.show();
    }

怎么打?(当前活动名称)

showForgotDialog(current_activity_name.this);

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.