Android Dialog超简单自定义布局(一定是你想要的)

前言
之前写过popupwindow的解析
Android PopupWindow超简单实现(一)
PopupWindow弹出位置解析
它真的很强大,自定义布局,弹出效果设置,灵活性很强。但是由于我的水平不够,想不起来如何让他弹出类似dialog的效果。但是有人实现了。所以想到曲线救国,使用自定义布局的Dialog.

上图先
Android Dialog超简单自定义布局(一定是你想要的)_第1张图片

准备工作

一、自定义dialog

public class MyDialog extends Dialog {
    //    style引用style样式
    public MyDialog(Context context, int width, int height, View layout, int style) {

        super(context, style);

        setContentView(layout);

        Window window = getWindow();

        WindowManager.LayoutParams params = window.getAttributes();

        params.gravity = Gravity.CENTER;

        window.setAttributes(params);
    }
}

二、dialog样式

style.xml复制进去就好

-- Dialog样式-->
    

三、自定义布局


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#00FFFFFF" >

    <RelativeLayout
        android:layout_width="280dp"
        android:layout_height="200dp"
        android:background="@drawable/dialog_bg"
        android:orientation="vertical">

        <TextView
            android:id="@+id/tip"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:padding="20dp"
            android:text="温馨提示"
            android:textColor="#FFD306"
            android:textSize="20dp" />


        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dp"
            android:text="余额不足,请先充值"
            android:layout_below="@+id/tip"
            android:textSize="20dp" />

        <View
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_marginTop="20dp"
            android:background="#c0c0c0"
            android:layout_above="@+id/ll_btn"
            />

        <LinearLayout
            android:id="@+id/ll_btn"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:orientation="horizontal">

            <TextView
                android:id="@+id/textView"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:gravity="center"
                android:paddingBottom="15dp"
                android:paddingTop="15dp"
                android:text="取消"
                android:textSize="17dp" />

            <View
                android:layout_width="1dp"
                android:layout_height="match_parent"
                android:background="#c0c0c0"/>

            <TextView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:paddingTop="15dp"
                android:paddingBottom="15dp"
                android:textColor="#FFD306"
                android:text="确定"
                android:textSize="17dp"
                android:gravity="center"
                />

        LinearLayout>


    RelativeLayout>

RelativeLayout>

附上背景圆角的dialog_bg.xml:


<shape xmlns:android="http://schemas.android.com/apk/res/android">

    <corners android:radius="15dp"/>
    <stroke android:color="#c0c0c0" android:width="1dp"/>
shape>

四、终结

Activity调用

 View view = getLayoutInflater().inflate(R.layout.dialog_layout, null);
        mMyDialog = new MyDialog(this, 0, 0, view, R.style.DialogTheme);
        mMyDialog.setCancelable(true);
        mMyDialog.show();

总结

看百度后也没有找到一个合适的,要不就是太宽,无法控制宽度,要不就是不好用,各种参差不齐,这是以前使用的,不知道借鉴哪位大神得了。看起来复杂,但是可重用性很高,只需要这几步就可以。而且以后使用很方便。在popupwindow不太方便的时候采取这个方式是个不错的选择。

你可能感兴趣的:(android)