android弹出框自定义按钮,安卓(kotlin)自定义弹出框

本文介绍了如何在安卓开发中创建自定义的弹出框,包括自定义样式、按钮以及不同类型的对话框(单按钮、双按钮)。通过自定义`CustomDialog`类,设置布局文件,以及在`MainActivity`中调用相关方法,实现灵活的对话框操作。
摘要由CSDN通过智能技术生成

在安卓开发中,我们经常会遇到这种情况,就是可爱的UI们设计了一套属于我们自己风格的弹出框,为了彰显我们自己的风格,使用自动的dialog当然满足不了我们的需求,所以还是得这基础上写出我们自己的提示框,以后UI再变化,我们也只需要修改样式就好了。

1.首先我们先写好dialog的样式

custom_dialog.xml

android:id="@+id/content"

android:layout_width="280dp"

android:layout_height="wrap_content"

android:paddingRight="24dp"

android:paddingLeft="24dp"

android:paddingTop="21dp"

android:paddingBottom="21dp"

android:orientation="vertical">

android:id="@+id/title"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:textSize="16sp"

android:textColor="#deffffff"

android:letterSpacing="0.03"

android:lineSpacingExtra="8sp"

android:text="提示"

android:layout_marginTop="6dp"

android:layout_marginBottom="15dp"

android:visibility="gone"/>

android:id="@+id/message"

android:layout_width="256dp"

android:layout_height="wrap_content"

android:textSize="14sp"

android:textColor="#99ffffff"

android:letterSpacing="0.02"

android:lineSpacingExtra="6sp"

android:text="这是自定义弹出框"

/>

android:id="@+id/twoButtonLayout"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_marginTop="31dp">

android:id="@+id/negativeBtn"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:textSize="14sp"

android:textColor="#138ef0"

android:letterSpacing="0.09"

android:lineSpacingExtra="2sp"

android:text="取消"

android:layout_alignParentRight="true"

android:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值