如何在自定义对话框中创建正面和负面按钮

How can I create positive and negative buttons at custom dialogs(如何在自定义对话框中创建正面和负面按钮)
本文介绍了如何在自定义对话框中创建正面和负面按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我想创建一个自定义对话框.所以我创建了一个模板dialog_change"并打开了对话框.

I want to create a custom dialog. So i create a template 'dialog_change' and I open the dialog.

Dialog myDialog = new Dialog(Overview.this);
myDialog.setContentView(R.layout.dialog_change);
myDialog.setTitle("My Custom Dialog Title");
myDialog.show();

现在我想在底部添加两个按钮(一个正按钮和一个负按钮).我该怎么做?

Now i want to add two button (one positive and one negative button), at the bottom. How can i do that?

推荐答案

我只是制作你自己的自定义类来模拟一个 AlertDialog,这样你就可以使用你自己的布局而不附加任何字符串.(如果您想要一个完全样式化的 AlertDialog,则存在一些无法完全摆脱框架的奇怪问题).类似这样的东西,但您可以随意扩展它:

I'd just make your own custom class to simulate an AlertDialog, this way you can use your own layout with no strings attached. (There are some weird issues where you can't fully get rid of the frame if you want a fully styled AlertDialog). Something like this, but you can expand this as fully as you want:

public class CustomDialog extends Dialog {
    private Button positive, negative;

    public CustomDialog(Context context) {
        super(context);
        initialize(context);
    }

    protected CustomDialog(Context context, boolean cancelable, OnCancelListener cancelListener) {
        super(context, cancelable, cancelListener);
        initialize(context);
    }

    public CustomDialog(Context context, int theme) {
        super(context, theme);
        initialize(context);
    }

    private void initialize(Context c) {
        //Inflate your layout, get a handle for the buttons

        positive = (Button)layout.findViewById(R.id.positive):
        negative = (Button)layout.findViewById(R.id.negative):

        positive.setVisibility(View.GONE);
        negative.setVisibility(View.GONE);
    }

    public void setPositiveButton(String buttonText, View.OnClickListener listener) {
        positive.setText(buttonText);
        positive.setOnClickListener(listener);
        positive.setVisibility(View.VISIBLE);
    }

    public void setNegativeButton(String buttonText, View.OnClickListener listener) {
        negative.setText(buttonText);
        negative.setOnClickListener(listener);
        negative.setVisibility(View.VISIBLE);
    }
}

这篇关于如何在自定义对话框中创建正面和负面按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How To Create a Rotating Wheel Control?(如何创建转轮控件?)
How to avoid restarting activity when orientation changes on Android(如何在 Android 上的方向更改时避免重新启动活动)
How can you rotate text for UIButton and UILabel in Swift?(如何在 Swift 中旋转 UIButton 和 UILabel 的文本?)
How can you rotate text for UIButton and UILabel in Objective-C?(如何在 Objective-C 中旋转 UIButton 和 UILabel 的文本?)
Screen orientation lock(屏幕方向锁定)
Strange behavior with android orientation sensor(android方向传感器的奇怪行为)