Android-自定义Dialog-高仿QQ下线通知

  • 首先将代码分享出来:customDialog

  • 最近做开发感觉Android原生AlertDialog和我们的APP不太符合,所以考虑自定义Dialog来匹配风格。

  • 我们先看下QQ下线通知的Dialog:
    在这里插入图片描述
    感觉很是漂亮,当然要仿造了。

  • 首先了解下Android原生Dialog的模样:
    *在这里插入图片描述

  • 再来看看我最终实现的效果图:

    在这里插入图片描述

  • 怎么样,还不错吧,下面一起来仿造QQ下线通知:

下面开始:

  1. 笔者采用的方式是扩展Android原生Dialog类,写一个自己的布局,将这个布局加载进去,核心在于布局文件,代码不难,下面先看布局文件的代码:custom_dialog.xml

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    	xmlns:tools="http://schemas.android.com/tools"
    	android:layout_width="match_parent"
    	android:layout_height="wrap_content"
    	android:layout_gravity="center_horizontal"
    	android:background="@color/colorWhite"
    	android:orientation="vertical">
    
    
    	<TextView
    		android:id="@+id/dialog_title"
    		android:layout_width="match_parent"
    		android:layout_height="40dp"
    		android:layout_marginTop="15dp"
    		android:gravity="center"
    		android:text="@string/title"
    		android:textColor="#202020"
    		android:textSize="16sp" />
    
    	<LinearLayout
    		android:id="@+id/dialog_content"
    		android:layout_width="match_parent"
    		android:layout_height="wrap_content">
    
    		<TextView
    			android:id="@+id/dialog_message"
    			android:layout_width="match_parent"
    			android:layout_height="wrap_content"
    			android:layout_marginLeft="4dp"
    			android:layout_marginRight="4dp
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值