51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Android:自定义对话框

1.实现效果 {#1.%E5%AE%9E%E7%8E%B0%E6%95%88%E6%9E%9C}

2.定义 dialog.xml (res/layout/dialog.xml) {#2.%E5%AE%9A%E4%B9%89dialog.xml-(res%2Flayout%2Fdialog.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="match_parent"
    android:orientation="vertical" >
&amp;lt;RelativeLayout
    android:layout_width=&quot;250sp&quot;
    android:layout_height=&quot;270sp&quot;
    android:layout_centerInParent=&quot;true&quot;&amp;gt;

    &amp;lt;TextView
        android:id=&quot;@+id/dialog_title&quot;
        android:layout_width=&quot;wrap_content&quot;
        android:layout_height=&quot;35sp&quot;
        android:layout_alignParentTop=&quot;true&quot;
        android:layout_centerHorizontal=&quot;true&quot;
        android:layout_marginTop=&quot;15sp&quot;
        android:textColor=&quot;#333333&quot;
        android:textSize=&quot;17sp&quot; /&amp;gt;

    &amp;lt;TextView
        android:id=&quot;@+id/dialog_message&quot;
        android:layout_width=&quot;wrap_content&quot;
        android:layout_height=&quot;160sp&quot;
        android:layout_centerInParent=&quot;true&quot;
        android:layout_marginTop=&quot;65sp&quot;
        android:textColor=&quot;#333333&quot;
        android:textSize=&quot;17sp&quot; /&amp;gt;

    &amp;lt;LinearLayout
        android:layout_width=&quot;wrap_content&quot;
        android:layout_height=&quot;wrap_content&quot;
        android:layout_alignParentBottom=&quot;true&quot;
        android:layout_centerHorizontal=&quot;true&quot;
        android:layout_marginTop=&quot;30sp&quot;
        android:layout_marginBottom=&quot;20sp&quot;
        android:orientation=&quot;horizontal&quot;&amp;gt;

        &amp;lt;LinearLayout
            android:id=&quot;@+id/dialog_confirm&quot;
            android:layout_width=&quot;wrap_content&quot;
            android:layout_height=&quot;wrap_content&quot;&amp;gt;

            &amp;lt;TextView
                android:layout_width=&quot;wrap_content&quot;
                android:layout_height=&quot;wrap_content&quot;
                android:background=&quot;@drawable/confirm_button_style&quot;
                android:gravity=&quot;center&quot;
                android:text=&quot;确定&quot;
                android:textColor=&quot;@color/white&quot;
                android:textSize=&quot;18sp&quot; /&amp;gt;
        &amp;lt;/LinearLayout&amp;gt;

        &amp;lt;LinearLayout
            android:id=&quot;@+id/dialog_cancel&quot;
            android:layout_width=&quot;wrap_content&quot;
            android:layout_height=&quot;wrap_content&quot;
            android:layout_marginLeft=&quot;22sp&quot;&amp;gt;

            &amp;lt;TextView
                android:layout_width=&quot;wrap_content&quot;
                android:layout_height=&quot;wrap_content&quot;
                android:background=&quot;@drawable/cancel_button_style&quot;
                android:gravity=&quot;center&quot;
                android:text=&quot;取消&quot;
                android:textColor=&quot;@color/teal_200&quot;
                android:textSize=&quot;18sp&quot; /&amp;gt;
        &amp;lt;/LinearLayout&amp;gt;
    &amp;lt;/LinearLayout&amp;gt;

&amp;lt;/RelativeLayout&amp;gt;

&lt;/RelativeLayout&gt;



3. 设置确定、取消按钮的background {#3.-%E8%AE%BE%E7%BD%AE%E7%A1%AE%E5%AE%9A%E3%80%81%E5%8F%96%E6%B6%88%E6%8C%89%E9%92%AE%E7%9A%84background}

上文的dialog.xml中,确定和取消按钮都是TextView,所以需要自定义按钮的背景

confirm_button_style.xml (所有的color需要自定义)

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <corners android:radius="1000sp"/>
    <solid android:color="@color/teal_200"/>
    <stroke
        android:width="0.5sp"
        android:color="@color/colorAccent"/>
    <size android:width="105sp" android:height="40sp"/>
</shape>

cancel_button_style.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <corners android:radius="1000sp"/>
    <solid android:color="@color/white"/>
    <stroke
        android:width="0.5sp"
        android:color="@color/teal_200"/>
    <size android:width="105sp" android:height="40sp"/>
</shape>

4. 自定义dialog的使用 {#4.-%E8%87%AA%E5%AE%9A%E4%B9%89dialog%E7%9A%84%E4%BD%BF%E7%94%A8}

final AlertDialog dialog = new AlertDialog.Builder(xxxClass.this).create();
dialog.setCancelable(false); //点击对话框以外的位置,不消失
dialog.show();

Window window = dialog.getWindow(); window.setContentView(R.layout.dialog); //标题 TextView title = window.findViewById(R.id.dialog_title); title.setText("dialog_title");

//内容 TextView message = window.findViewById(R.id.dialog_message); message.setText("dialog_message ");

//确定按钮 LinearLayout confirm = window.findViewById(R.id.dialog_confirm); confirm.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { //xxx } });

//取消按钮 LinearLayout cancel = window.findViewById(R.id.dialog_cancel); cancel.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { //xxx } });






赞(4)
未经允许不得转载:工具盒子 » Android:自定义对话框