热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Android中Dialog的用法介绍

Dialog是android开发过程中最常用到的组件之一,它包括以下几种类型:1、警告对话框:Alertialoghttp:blog.csdn.netu013985004arti

Dialog是android开发过程中最常用到的组件之一,它包括以下几种类型:

1、警告对话框:Alertialog

http://blog.csdn.net/u013985004/article/details/25601833


2、进度对话框:ProgressDialog

http://blog.csdn.net/u013985004/article/details/25619129


3、日期选择对话框:DatePickerDialog

4、时间选择对话框:TimePickerDialog

http://blog.csdn.net/u013985004/article/details/25625565


5、自定义Dialog

我们用的最多的就是自定义的Dialog,简单介绍一下:


自己随便做的样式不好看

(1)首先我们要定义自己的布局dialog.xml


android:layout_
android:layout_
android:orientation="vertical"
android:padding="20dp" >
android:layout_
android:layout_
android:layout_marginTop="10dp"
android:gravity="center_horizontal"
android:text="我是自定义Dialog"
android:textSize="20sp" />
android:id="@+id/tv_content"
android:layout_
android:layout_
android:layout_marginBottom="20dp"
android:layout_marginTop="20dp"
android:text="内容" />
android:layout_
android:layout_ >
android:id="@+id/b_sure"
android:layout_
android:layout_
android:text="确定" />
android:id="@+id/b_cancel"
android:layout_
android:layout_
android:text="取消" />


(2)定义自己的Dialog

public Dialog mDialog(Activity activity, String content,
OnClickListener[] listeners) {
// 这里是Dialog的样式可以使用自带的,这里我使用自定义的
final Dialog lDialog = new Dialog(activity, R.style.MyDialogStyleFull);
lDialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
lDialog.setContentView(R.layout.dialog);
TextView tvCOntent= (TextView) lDialog.findViewById(R.id.tv_content);
tvContent.setText(content);
Button b_cancel = (Button) lDialog.findViewById(R.id.b_cancel);
Button b_sure = (Button) lDialog.findViewById(R.id.b_sure);
if (listeners != null) {
if (listeners.length > 0)
b_cancel.setOnClickListener(listeners[0]);
if (listeners.length > 1)
b_sure.setOnClickListener(listeners[1]);
}
lDialog.show();
return lDialog;
}

(3)定义自己的Dialog样式,在styles中添加




动画效果的实现

需要在res下面建文件夹anim,然后在下面新建动画效果:

进来的动画alpha_translate_in.xml


android:shareInterpolator="false" >
android:duration="200"
android:fromAlpha="0.0"
android:interpolator="@android:res/anim/accelerate_decelerate_interpolator"
android:repeatCount="0"
android:toAlpha="1.0" >

android:duration="200"
android:fromYDelta="100%"
android:toYDelta="0" />

出去的动画alpha_translate_out.xml


android:shareInterpolator="false" >
android:duration="200"
android:fromAlpha="1.0"
android:interpolator="@android:res/anim/accelerate_decelerate_interpolator"
android:repeatCount="0"
android:toAlpha="0.0" >

android:duration="200"
android:fromYDelta="0"
android:toYDelta="100%" />

(4)使用我们上面定义好的Dialog,如果有多个地方使用,可以定义一个工具类,把这个定义为静态方法,可以随时调用

private Dialog dialog;  //定义一个全局的Dialog

OnClickListener okListener = new OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(getApplicationContext(), "点击确定按钮",Toast.LENGTH_SHORT).show();
dialog.dismiss();
}
};
OnClickListener cancelListener = new OnClickListener() {
@Override
public void onClick(View v) {
dialog.dismiss();
}
}; //首先定义两个监听,用于监听Dialog的按钮
dialog = mDialog(MainActivity.this, "这个自定义Dialog的内容",
new OnClickListener[] { cancelListener, okListener });//生成Dialog
dialog.setCancelable(false); //设置Dialog点击其他地方以及返回键,是否消失


这里是自定义的Dialog,现在用的最多的就是自定义的,如果要了解其他的可以点击上面的链接。。。



推荐阅读
author-avatar
妞妞的豆皮皮_626
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有