android 自定义progressdialog,Android 自定义progressDialog实现

android 自定义progressdialog,Android 自定义progressDialog实现我们在项目中经常会遇到这样一个应用场景:执行某个耗时操作时,为了安抚用户等待的烦躁心情我们一般会使用进度条之类的空间,在android中让大家最容易想到的就是progressbar或者progressDialog,区别在于前者是一个控件,后者是对话框。由于一些需求在弹出进度条时不希望用户能够操作其他控件,所以只能使用progressDialog,这个时候有遇到了一个问题,我不想要progres…

我们在项目中经常会遇到这样一个应用场景:执行某个耗时操作时,为了安抚用户等待的烦躁心情我们一般会使用进度条之类的空间,在android中让大家最 容易想到的就是progressbar或者progressDialog,区别在于前者是一个控件,后者是对话框。由于一些需求在弹出进度条时不希望用户 能够操作其他控件,所以只能使用progressDialog,这个时候有遇到了一个问题,我不想要progressDialog的黑色框框,感觉这样跟 应用的整体风格不协调,这个时候就考虑了写一个自定义的progressDialog。

在网上搜过很多自定义progressDialog的例子,对着写了下,但是没有任何效果,不知道是自己使用的方法不对还是什么地方出错了。通过不断的查找资料,写了一个简单的自定义progressDialog。先上图看下效果:

81aba4e5e79790db1f24c1cf53b771f2.png

1.String.xml 文件,progressDialog是继承与Dialog,先设置一下progressDialog的风格,设置背景透明色。

@null

true

@null

@android:style/Animation.Dialog

stateUnspecified|adjustPan

@android:color/transparent

true

2.customprogressdialog.xml文件,定义自己的布局,由于我的需求只需要一个进度条以及一串显示的内容,所以布局比较接单

xmlns:android=”http://schemas.android.com/apk/res/android”

android:layout_width=”fill_parent”

android:layout_height=”fill_parent”

android:orientation=”horizontal”>

android:id=”@+id/loadingImageView”

android:layout_width=”wrap_content”

android:layout_height=”wrap_content”

android:background=”@anim/progress_round”/>

android:id=”@+id/id_tv_loadingmsg”

android:layout_width=”wrap_content”

android:layout_height=”wrap_content”

android:layout_gravity=”center_vertical”

android:textSize=”20dp”/>

3.progress_round.xml文件.这个文件为了实现转动的效果,循环显示这些图片。

xmlns:android=”http://schemas.android.com/apk/res/android”

android:oneshot=”false”>

4.CustomProgressDialog.java文件,这个是就是我们最终需要使用的progressDialog了。

/**************************************************************************************

* [Project]

* MyProgressDialog

* [Package]

* com.lxd.widgets

* [FileName]

* CustomProgressDialog.java

* [Copyright]

* Copyright 2012 LXD All Rights Reserved.

* [History]

* Version Date Author Record

*————————————————————————————–

* 1.0.0 2012-4-27 lxd (rohsuton@gmail.com) Create

**************************************************************************************/

package com.lxd.widgets;

import com.lxd.activity.R;

import android.app.Dialog;

import android.content.Context;

import android.graphics.drawable.AnimationDrawable;

import android.view.Gravity;

import android.widget.ImageView;

import android.widget.TextView;

/********************************************************************

* [Summary]

* TODO 请在此处简要描述此类所实现的功能。因为这项注释主要是为了在IDE环境中生成tip帮助,务必简明扼要

* [Remarks]

* TODO 请在此处详细描述类的功能、调用方法、注意事项、以及与其它类的关系.

*******************************************************************/

public class CustomProgressDialog extends Dialog {

private Context context = null;

private static CustomProgressDialog customProgressDialog = null;

public CustomProgressDialog(Context context){

super(context);

this.context = context;

}

public CustomProgressDialog(Context context, int theme) {

super(context, theme);

}

public static CustomProgressDialog createDialog(Context context){

customProgressDialog = new CustomProgressDialog(context,R.style.CustomProgressDialog);

customProgressDialog.setContentView(R.layout.customprogressdialog);

customProgressDialog.getWindow().getAttributes().gravity = Gravity.CENTER;

return customProgressDialog;

}

public void onWindowFocusChanged(boolean hasFocus){

if (customProgressDialog == null){

return;

}

ImageView imageView = (ImageView) customProgressDialog.findViewById(R.id.loadingImageView);

AnimationDrawable animationDrawable = (AnimationDrawable) imageView.getBackground();

animationDrawable.start();

}

/**

*

* [Summary]

* setTitile 标题

* @param strTitle

* @return

*

*/

public CustomProgressDialog setTitile(String strTitle){

return customProgressDialog;

}

/**

*

* [Summary]

* setMessage 提示内容

* @param strMessage

* @return

*

*/

public CustomProgressDialog setMessage(String strMessage){

TextView tvMsg = (TextView)customProgressDialog.findViewById(R.id.id_tv_loadingmsg);

if (tvMsg != null){

tvMsg.setText(strMessage);

}

return customProgressDialog;

}

}

今天的文章android 自定义progressdialog,Android 自定义progressDialog实现分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/33567.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注