带XML的Android自定义警报 - 按钮单击操作

时间:2015-08-31 18:25:20

标签: android xml android-layout android-custom-view android-custom-attributes

我有2个布局文件,一个用于显示主要布局( activity_main.xml ),另一个用于显示自定义对话框( dialog_custom.xml )。这两个文件如下 -

activity_main.xml中

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

        <Button android:id="@+id/btn_1_option"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Show Alert with 1 Button"
            android:padding="10dip"
            android:layout_marginTop="40dip">
        </Button>

        <Button android:id="@+id/btn_2_option"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Show Alert With 2 Buttons"
            android:padding="10dip">
        </Button>

        <Button android:id="@+id/btn_3_option"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Show Alert with 3 Buttons"
            android:padding="10dip">
        </Button>

        <Button android:id="@+id/btn_custom_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Show Alert with Custom Layout - From XML"
            android:padding="10dip">
        </Button>

    </LinearLayout>

dialog_custom.xml

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

        <TextView
            android:id="@+id/dialog_info"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="10dp"
            android:background="@android:color/holo_orange_dark"
            android:text="@string/dialog_text"/>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:layout_below="@id/dialog_info">

            <Button
                android:id="@+id/dialog_cancel"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="0.50"
                android:background="#3333"
                android:text="Cancel"/>

            <Button
                android:id="@+id/dialog_ok"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="0.50"
                android:background="#888888"
                android:text="Agree"/>
        </LinearLayout>
    </RelativeLayout>

我在主类中所做的是 -

    public class Activity_Main extends Activity
    {
        Context context = Activity_Main.this;
        @Override
        protected void onCreate(Bundle savedInstanceState)
        {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);

            final Dialog dialog = new Dialog(context);
            dialog.setContentView(R.layout.dialog_main);
            dialog.setTitle(R.string.dialog_title);
            dialog.show();
        }
    }

所以,我得到一个这样的对话 -

Output

现在我想为此取消同意按钮添加点击选项。但如果我想要,我会被迫接近。任何人都可以帮助我,我该怎么办?

感谢您的帮助。

3 个答案:

答案 0 :(得分:1)

按如下方式进行:

final Dialog dialog = new Dialog(this);
dialog.setContentView(R.layout.layout.dialog_main);
Button btCancel = (Button) dialog.findViewById(R.id.dialog_cancel);
Button btOk = (Button) dialog.findViewById(R.id.dialog_ok);
btCancel.setOnClickListener(new View.OnClickListener() {
 @Override
   public void onClick(View v) {
   //Cancel Click

   }
});
btOk.setOnClickListener(new View.OnClickListener() {
 @Override
  public void onClick(View v) {
  //OK CLICK      

  }
});
dialog.show();

如果您想添加Buttons或任何WidgetDialog内),请确保您使用dialog.findViewById(R.id.ID_WIDGET)查找视图,否则会崩溃。< / p>

答案 1 :(得分:0)

我找不到你的点击代码取消并同意,但试试这个:

 Button cancel=(Button)dialog.findViewById(R.id.dialog_cancel);
cancel.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
//              do your work

            }
        });

如果问题仍然存在,请发送错误并点击代码。

答案 2 :(得分:0)

您可能需要将View.OnClickListener添加到对话框的按钮中。

Button btnCancel = (Button) dialog.findViewById(R.id.dialog_cancel);
Button btnOk = (Button) dialog.findViewById(R.id.dialog_ok);
btnCancel.setOnClickListener(new View.OnClickListener() {
 @Override
   public void onClick(View v) {
   //Called on click of Cancel button
   }
});
btnOk.setOnClickListener(new View.OnClickListener() {
 @Override
  public void onClick(View v) {
   //Called on click of Cancel button    
  }
});
dialog.show();