自定义AlertDialog(圆角+退出动画+自定义布局)

2024-08-31 23:58

本文主要是介绍自定义AlertDialog(圆角+退出动画+自定义布局),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

图片省略了不上传了。。。

首先看activity_main.xml

<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" ><Buttonandroid:id="@+id/button"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_centerInParent="true"android:text="点击我,弹出AlertDialog" /></RelativeLayout>
MainActivity.java

package com.godinsec.alertdialog;import com.godinsec.alertdialog.ShowDeleDialog.onBtnClickListener;import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Toast;public class MainActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {new ShowDeleDialog(MainActivity.this, new onBtnClickListener(){@Overridepublic void onSure() {Toast.makeText(MainActivity.this, "进行确认操作", 0).show();}@Overridepublic void onExit() {Toast.makeText(MainActivity.this, "进行取消操作", 0).show();}}, "确定", "取消", "提示", "AlertDialog的内容").show();}});}}

接下来看自定义alertDialog

dele_allcontacts_dialog.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="fill_parent"android:layout_height="fill_parent" ><RelativeLayoutandroid:id="@+id/re_tip_dialog"android:layout_width="300dp"android:layout_height="120dp"android:layout_centerInParent="true"android:background="@drawable/rounded_search_text"><TextViewandroid:id="@+id/appTitle"android:layout_width="wrap_content"android:layout_height="wrap_content" android:layout_marginLeft="10dp"android:layout_marginTop="10dp"android:text="标题"/><TextViewandroid:id="@+id/tips"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_below="@id/appTitle"android:layout_alignLeft="@id/appTitle"android:text="AlertDialog的内容"android:layout_marginTop="20dp"/><TextViewandroid:id="@+id/sure"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_alignParentRight="true"android:text="确认"android:layout_below="@id/tips"android:layout_marginTop="20dp" /><TextViewandroid:id="@+id/cancel"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_alignBottom="@id/sure"android:text="取消"android:layout_marginRight="30dp"android:layout_toLeftOf="@id/sure" /></RelativeLayout></RelativeLayout>
rounded_search_text.xml(圆角)

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"android:shape="rectangle" ><solid android:color="#FF7F24" /><cornersandroid:bottomLeftRadius="4dp"android:bottomRightRadius="4dp"android:topLeftRadius="4dp"android:topRightRadius="4dp" /></shape>
ShowDeleDialog.java

package com.godinsec.alertdialog;import android.app.Dialog;
import android.content.Context;
import android.graphics.drawable.BitmapDrawable;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.view.animation.Animation;
import android.view.animation.Animation.AnimationListener;
import android.view.animation.ScaleAnimation;
import android.widget.RelativeLayout;
import android.widget.TextView;public class ShowDeleDialog extends Dialog implementsandroid.view.View.OnClickListener {private onBtnClickListener onBtnClickListener;private Context context;private String sure;private String cancle;private String appTitle;private String tips;private TextView tv_dele_sure;private TextView tv_dele_cancle;private TextView tv_appTitle;private TextView tv_tips;private RelativeLayout re_tip_dialog;public ShowDeleDialog(Context context,onBtnClickListener onBtnClickListener, String sure, String cancle,String appTitle, String tips) {super(context);this.onBtnClickListener = onBtnClickListener;this.context = context;this.appTitle = appTitle;this.tips = tips;this.sure = sure;this.cancle = cancle;}@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);// 去除默认的头部标题requestWindowFeature(Window.FEATURE_NO_TITLE);setContentView(R.layout.dele_allcontacts_dialog);tv_dele_sure = (TextView) findViewById(R.id.sure);tv_dele_cancle = (TextView) findViewById(R.id.cancel);tv_appTitle = (TextView) findViewById(R.id.appTitle);tv_tips = (TextView) findViewById(R.id.tips);re_tip_dialog = (RelativeLayout) findViewById(R.id.re_tip_dialog);tv_dele_cancle.setOnClickListener(this);tv_dele_sure.setOnClickListener(this);//进入动画是伪代码
ScaleAnimation scaleAnimation = new ScaleAnimation(1.0f, 1.0f,  
0.0f, 1.0f, Animation.RELATIVE_TO_SELF,  
0.5f, Animation.RELATIVE_TO_SELF,  
0.5f);  
scaleAnimation.setDuration(200);  
re_tip_dialog.startAnimation(scaleAnimation);
Window window = this.getWindow();WindowManager.LayoutParams params = this.getWindow().getAttributes();// 去除四角黑色背景window.setBackgroundDrawable(new BitmapDrawable());// 设置周围的暗色系数params.dimAmount = 0.5f;window.setAttributes(params);// 为各个textview赋值tv_dele_sure.setText(sure);tv_dele_cancle.setText(cancle);tv_appTitle.setText(appTitle);tv_tips.setText(tips);}public interface onBtnClickListener {public void onSure();public void onExit();}@Overridepublic void onClick(View v) {switch (v.getId()) {case R.id.cancel:onBtnClickListener.onExit();alertDialogExitAnim();break;case R.id.sure:onBtnClickListener.onSure();alertDialogExitAnim();break;default:break;}}private void alertDialogExitAnim() {ScaleAnimation scaleAnimation = new ScaleAnimation(1.0f, 0.0f,1.0f, 0.0f, Animation.ABSOLUTE,re_tip_dialog.getWidth() / 2, Animation.ABSOLUTE,re_tip_dialog.getHeight() / 2);scaleAnimation.setDuration(1000);re_tip_dialog.startAnimation(scaleAnimation);scaleAnimation.setAnimationListener(new AnimationListener() {@Overridepublic void onAnimationStart(Animation animation) {}@Overridepublic void onAnimationRepeat(Animation animation) {}@Overridepublic void onAnimationEnd(Animation animation) {ShowDeleDialog.this.dismiss();}});}}





这篇关于自定义AlertDialog(圆角+退出动画+自定义布局)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1125366

相关文章

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

Flutter 进阶:绘制加载动画

绘制加载动画:由小圆组成的大圆 1. 定义 LoadingScreen 类2. 实现 _LoadingScreenState 类3. 定义 LoadingPainter 类4. 总结 实现加载动画 我们需要定义两个类:LoadingScreen 和 LoadingPainter。LoadingScreen 负责控制动画的状态,而 LoadingPainter 则负责绘制动画。

自定义类型:结构体(续)

目录 一. 结构体的内存对齐 1.1 为什么存在内存对齐? 1.2 修改默认对齐数 二. 结构体传参 三. 结构体实现位段 一. 结构体的内存对齐 在前面的文章里我们已经讲过一部分的内存对齐的知识,并举出了两个例子,我们再举出两个例子继续说明: struct S3{double a;int b;char c;};int mian(){printf("%zd\n",s

Spring 源码解读:自定义实现Bean定义的注册与解析

引言 在Spring框架中,Bean的注册与解析是整个依赖注入流程的核心步骤。通过Bean定义,Spring容器知道如何创建、配置和管理每个Bean实例。本篇文章将通过实现一个简化版的Bean定义注册与解析机制,帮助你理解Spring框架背后的设计逻辑。我们还将对比Spring中的BeanDefinition和BeanDefinitionRegistry,以全面掌握Bean注册和解析的核心原理。

用Unity2D制作一个人物,实现移动、跳起、人物静止和动起来时的动画:中(人物移动、跳起、静止动作)

上回我们学到创建一个地形和一个人物,今天我们实现一下人物实现移动和跳起,依次点击,我们准备创建一个C#文件 创建好我们点击进去,就会跳转到我们的Vision Studio,然后输入这些代码 using UnityEngine;public class Move : MonoBehaviour // 定义一个名为Move的类,继承自MonoBehaviour{private Rigidbo

Oracle type (自定义类型的使用)

oracle - type   type定义: oracle中自定义数据类型 oracle中有基本的数据类型,如number,varchar2,date,numeric,float....但有时候我们需要特殊的格式, 如将name定义为(firstname,lastname)的形式,我们想把这个作为一个表的一列看待,这时候就要我们自己定义一个数据类型 格式 :create or repla

lvgl8.3.6 控件垂直布局 label控件在image控件的下方显示

在使用 LVGL 8.3.6 创建一个垂直布局,其中 label 控件位于 image 控件下方,你可以使用 lv_obj_set_flex_flow 来设置布局为垂直,并确保 label 控件在 image 控件后添加。这里是如何步骤性地实现它的一个基本示例: 创建父容器:首先创建一个容器对象,该对象将作为布局的基础。设置容器为垂直布局:使用 lv_obj_set_flex_flow 设置容器

HTML5自定义属性对象Dataset

原文转自HTML5自定义属性对象Dataset简介 一、html5 自定义属性介绍 之前翻译的“你必须知道的28个HTML5特征、窍门和技术”一文中对于HTML5中自定义合法属性data-已经做过些介绍,就是在HTML5中我们可以使用data-前缀设置我们需要的自定义属性,来进行一些数据的存放,例如我们要在一个文字按钮上存放相对应的id: <a href="javascript:" d

一步一步将PlantUML类图导出为自定义格式的XMI文件

一步一步将PlantUML类图导出为自定义格式的XMI文件 说明: 首次发表日期:2024-09-08PlantUML官网: https://plantuml.com/zh/PlantUML命令行文档: https://plantuml.com/zh/command-line#6a26f548831e6a8cPlantUML XMI文档: https://plantuml.com/zh/xmi