Android如何自定义升级对话框示例详解-创新互联

前言

创新互联建站专业成都网站制作、做网站,集网站策划、网站设计、网站制作于一体,网站seo、网站优化、网站营销、软文推广等专业人才根据搜索规律编程设计,让网站在运行后,在搜索中有好的表现,专业设计制作为您带来效益的网站!让网站建设为您创造效益。

本文主要给大家介绍了关于Android自定义升级对话框的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。

实现的效果如下所示


其实这也只是一个DialogFragment 而已,重点只是在于界面的设计

想要使用做出这样一个DialogFragment ,需要自定义一个View,然后将该View传入到该Dialog中

先定义布局,一个TextView用于标题,一个TextView用于升级内容阐述,一个ImageView,一个确认升级的按钮

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical">

 <TextView
 android:id="@+id/tv_title"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_marginTop="20dp"
 android:gravity="center"
 android:textColor="#0474dc"
 android:textSize="22sp"
 android:textStyle="bold" />

 <TextView
 android:id="@+id/tv_description"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_marginTop="15dp"
 android:gravity="center"
 android:textColor="#0474dc"
 android:textSize="18sp" />

 <ImageView
 android:layout_width="70dp"
 android:layout_height="70dp"
 android:layout_gravity="center"
 android:layout_marginBottom="20dp"
 android:layout_marginTop="20dp"
 android:src="@drawable/upgrade" />

 <Button
 android:id="@+id/btn_upgrade"
 
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_marginBottom="20dp"
 android:layout_marginEnd="20dp"
 android:layout_marginStart="20dp"
 android:gravity="center"
 android:text="立即更新" />

</LinearLayout>

新闻名称:Android如何自定义升级对话框示例详解-创新互联
网站地址:https://www.cdcxhl.com/article4/idsie.html

成都网站建设公司_创新互联,为您提供网站建设虚拟主机自适应网站网站设计软件开发服务器托管

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

成都网站建设