AlertDialog用法及自定义样式

本文介绍了如何在Android中使用AlertDialog,包括两种样式的实现:简单布局和包含ListView的复杂布局,并详细讲解了如何自定义对话框的大小。通过示例代码展示了在布局文件和Java代码中的具体操作,以及提供了自定义工具类的使用方法。
摘要由CSDN通过智能技术生成

自定义对话框AlertDialog

样式一: 布局简单,直接在布局文件中写死

效果预览:

在这里插入图片描述

xml布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="300dp"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@color/White"
    android:padding="10dp"
    >

    <TextView
        android:id="@+id/tv_alert_dialog_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="提示消息"
        android:textColor="@color/Black"
        android:textSize="18sp"
        />

    <TextView
        android:id="@+id/tv_alert_dialog_message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="请输入手机号或邮箱"
        android:textSize="14sp"
        android:textColor="@color/Black"
        android:layout_marginTop="10dp"
        />

    <TextView
        android:id="@+id/tv_alert_dialog_yes"
        android:layout_width="match_parent"
        android:layout_height="wrap_co
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值