[size=large] 我们在项目中经常会遇到这样一个应用场景:执行某个耗时操作时,为了安抚用户等待的烦躁心情我们一般会使用进度条之类的空间,在android中让大家最 容易想到的就是progressbar或者progressDialog,区别在于前者是一个控件,后者是对话框。由于一些需求在弹出进度条时不希望用户 能够操作其他控件,所以只能使用progressDialog,这个时候有遇到了一个问题,我不想要progressDialog的黑色框框,感觉这样跟 应用的整体风格不协调,这个时候就考虑了写一个自定义的progressDialog。
在网上搜过很多自定义progressDialog的例子,对着写了下,但是没有任何效果,不知道是自己使用的方法不对还是什么地方出错了。通过不断的查找资料,写了一个简单的自定义progressDialog。先上图看下效果:
1.String.xml 文件,progressDialog是继承与Dialog,先设置一下progressDialog的风格,设置背景透明色。
01
<style name="CustomDialog" parent="@android:style/Theme.Dialog">
02
<item name="android:windowFrame">@null</item>
03
<item name="android:windowIsFloating">true</item>
04
<item name="android:windowContentOverlay">@null</item>
05
<itemname="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
06
<item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
07
</style>
08
09
<style name="CustomProgressDialog" parent="@style/CustomDialog">
10
<item name="android:windowBackground">@android:color/transparent</item>
11
<item name="android:windowNoTitle">true</item>
12
</style>
2.customprogressdialog.xml文件,定义自己的布局,由于我的需求只需要一个进度条以及一串显示的内容,所以布局比较接单
01
<?xml version="1.0" encoding="utf-8"?>
02
<LinearLayout
03
xmlns:android="http://schemas.android.com/apk/res/android"
04
android:layout_width="fill_parent"
05
android:layout_height="fill_parent"
06
android:orientation="horizontal">
07
<ImageView
08
android:id="@+id/loadingImageView"
09
android:layout_width="wrap_content"
10
android:layout_height="wrap_content"
11
android:background="@anim/progress_round"/>
12
<TextView
13
android:id="@+id/id_tv_loadingmsg"
14
android:layout_width="wrap_content"
15
android:layout_height="wrap_content"
16
android:layout_gravity="center_vertical"
17
android:textSize="20dp"/>
18
</LinearLayout>
3.progress_round.xml文件.这个文件为了实现转动的效果,循环显示这些图片。
01
<?xml version="1.0" encoding="utf-8"?>
02
<animation-list
03
xmlns:android="http://schemas.android.com/apk/res/android"
04
android:oneshot="false">
05
<item android:drawable="@drawable/progress_1" android:duration="200"/>
06
<item android:drawable="@drawable/progress_2" android:duration="200"/>
07
<item android:drawable="@drawable/progress_3" android:duration="200"/>
08
<item android:drawable="@drawable/progress_4" android:duration="200"/>
09
<item android:drawable="@drawable/progress_5" android:duration="200"/>
10
<item android:drawable="@drawable/progress_6" android:duration="200"/>
11
<item android:drawable="@drawable/progress_7" android:duration="200"/>
12
<item android:drawable="@drawable/progress_8" android:duration="200"/>
13
</animation-list>
4.CustomProgressDialog.java文件,这个是就是我们最终需要使用的progressDialog了。
01
/**************************************************************************************
02
* [Project]
03
* MyProgressDialog
04
* [Package]
05
* com.lxd.widgets
06
* [FileName]
07
* CustomProgressDialog.java
08
* [Copyright]
09
* Copyright 2012 LXD All Rights Reserved.
10
* [History]
11
* Version Date Author Record
12
*--------------------------------------------------------------------------------------
13
* 1.0.0 2012-4-27 lxd (rohsuton@gmail.com) Create
14
**************************************************************************************/
15
16
package com.lxd.widgets;
17
18
19
import com.lxd.activity.R;
20
21
import android.app.Dialog;
22
import android.content.Context;
23
import android.graphics.drawable.AnimationDrawable;
24
import android.view.Gravity;
25
import android.widget.ImageView;
26
import android.widget.TextView;
27
28
29
/********************************************************************
30
* [Summary]
31
* TODO 请在此处简要描述此类所实现的功能。因为这项注释主要是为了在IDE环境中生成tip帮助,务必简明扼要
32
* [Remarks]
33
* TODO 请在此处详细描述类的功能、调用方法、注意事项、以及与其它类的关系.
34
*******************************************************************/
35
36
public class CustomProgressDialog extends Dialog {
37
private Context context = null;
38
private static CustomProgressDialog customProgressDialog = null;
39
40
public CustomProgressDialog(Context context){
41
super(context);
42
this.context = context;
43
}
44
45
public CustomProgressDialog(Context context, int theme) {
46
super(context, theme);
47
}
48
49
public static CustomProgressDialog createDialog(Context context){
50
customProgressDialog = newCustomProgressDialog(context,R.style.CustomProgressDialog);
51
customProgressDialog.setContentView(R.layout.customprogressdialog);
52
customProgressDialog.getWindow().getAttributes().gravity = Gravity.CENTER;
53
54
return customProgressDialog;
55
}
56
57
public void onWindowFocusChanged(boolean hasFocus){
58
59
if (customProgressDialog == null){
60
return;
61
}
62
63
ImageView imageView = (ImageView) customProgressDialog.findViewById(R.id.loadingImageView);
64
AnimationDrawable animationDrawable = (AnimationDrawable) imageView.getBackground();
65
animationDrawable.start();
66
}
67
68
/**
69
*
70
* [Summary]
71
* setTitile 标题
72
* @param strTitle
73
* @return
74
*
75
*/
76
public CustomProgressDialog setTitile(String strTitle){
77
return customProgressDialog;
78
}
79
80
/**
81
*
82
* [Summary]
83
* setMessage 提示内容
84
* @param strMessage
85
* @return
86
*
87
*/
88
public CustomProgressDialog setMessage(String strMessage){
89
TextView tvMsg = (TextView)customProgressDialog.findViewById(R.id.id_tv_loadingmsg);
90
91
if (tvMsg != null){
92
tvMsg.setText(strMessage);
93
}
94
95
return customProgressDialog;
96
}
97
}
5.接下来就是写一个测试activity调用我们的progressDialog了。
01
package com.lxd.activity;
02
03
import com.lxd.widgets.CustomProgressDialog;
04
05
import android.app.Activity;
06
import android.os.AsyncTask;
07
import android.os.Bundle;
08
import android.view.Window;
09
import android.view.WindowManager;
10
11
public class MainFrame extends Activity {
12
private MainFrameTask mMainFrameTask = null;
13
private CustomProgressDialog progressDialog = null;
14
15
@Override
16
public void onCreate(Bundle savedInstanceState) {
17
super.onCreate(savedInstanceState);
18
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
19
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
20
WindowManager.LayoutParams.FLAG_FULLSCREEN);
21
22
setContentView(R.layout.main);
23
24
mMainFrameTask = new MainFrameTask(this);
25
mMainFrameTask.execute();
26
}
27
28
@Override
29
protected void onDestroy() {
30
stopProgressDialog();
31
32
if (mMainFrameTask != null && !mMainFrameTask.isCancelled()){
33
mMainFrameTask.cancel(true);
34
}
35
36
super.onDestroy();
37
}
38
39
private void startProgressDialog(){
40
if (progressDialog == null){
41
progressDialog = CustomProgressDialog.createDialog(this);
42
progressDialog.setMessage("正在加载中...");
43
}
44
45
progressDialog.show();
46
}
47
48
private void stopProgressDialog(){
49
if (progressDialog != null){
50
progressDialog.dismiss();
51
progressDialog = null;
52
}
53
}
54
55
public class MainFrameTask extends AsyncTask<Integer, String, Integer>{
56
private MainFrame mainFrame = null;
57
58
public MainFrameTask(MainFrame mainFrame){
59
this.mainFrame = mainFrame;
60
}
61
62
@Override
63
protected void onCancelled() {
64
stopProgressDialog();
65
super.onCancelled();
66
}
67
68
@Override
69
protected Integer doInBackground(Integer... params) {
70
71
try {
72
Thread.sleep(10 * 1000);
73
} catch (InterruptedException e) {
74
e.printStackTrace();
75
}
76
return null;
77
}
78
79
@Override
80
protected void onPreExecute() {
81
startProgressDialog();
82
}
83
84
@Override
85
protected void onPostExecute(Integer result) {
86
stopProgressDialog();
87
}
88
89
90
91
}
92
}
[/size]
在网上搜过很多自定义progressDialog的例子,对着写了下,但是没有任何效果,不知道是自己使用的方法不对还是什么地方出错了。通过不断的查找资料,写了一个简单的自定义progressDialog。先上图看下效果:
1.String.xml 文件,progressDialog是继承与Dialog,先设置一下progressDialog的风格,设置背景透明色。
01
<style name="CustomDialog" parent="@android:style/Theme.Dialog">
02
<item name="android:windowFrame">@null</item>
03
<item name="android:windowIsFloating">true</item>
04
<item name="android:windowContentOverlay">@null</item>
05
<itemname="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
06
<item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
07
</style>
08
09
<style name="CustomProgressDialog" parent="@style/CustomDialog">
10
<item name="android:windowBackground">@android:color/transparent</item>
11
<item name="android:windowNoTitle">true</item>
12
</style>
2.customprogressdialog.xml文件,定义自己的布局,由于我的需求只需要一个进度条以及一串显示的内容,所以布局比较接单
01
<?xml version="1.0" encoding="utf-8"?>
02
<LinearLayout
03
xmlns:android="http://schemas.android.com/apk/res/android"
04
android:layout_width="fill_parent"
05
android:layout_height="fill_parent"
06
android:orientation="horizontal">
07
<ImageView
08
android:id="@+id/loadingImageView"
09
android:layout_width="wrap_content"
10
android:layout_height="wrap_content"
11
android:background="@anim/progress_round"/>
12
<TextView
13
android:id="@+id/id_tv_loadingmsg"
14
android:layout_width="wrap_content"
15
android:layout_height="wrap_content"
16
android:layout_gravity="center_vertical"
17
android:textSize="20dp"/>
18
</LinearLayout>
3.progress_round.xml文件.这个文件为了实现转动的效果,循环显示这些图片。
01
<?xml version="1.0" encoding="utf-8"?>
02
<animation-list
03
xmlns:android="http://schemas.android.com/apk/res/android"
04
android:oneshot="false">
05
<item android:drawable="@drawable/progress_1" android:duration="200"/>
06
<item android:drawable="@drawable/progress_2" android:duration="200"/>
07
<item android:drawable="@drawable/progress_3" android:duration="200"/>
08
<item android:drawable="@drawable/progress_4" android:duration="200"/>
09
<item android:drawable="@drawable/progress_5" android:duration="200"/>
10
<item android:drawable="@drawable/progress_6" android:duration="200"/>
11
<item android:drawable="@drawable/progress_7" android:duration="200"/>
12
<item android:drawable="@drawable/progress_8" android:duration="200"/>
13
</animation-list>
4.CustomProgressDialog.java文件,这个是就是我们最终需要使用的progressDialog了。
01
/**************************************************************************************
02
* [Project]
03
* MyProgressDialog
04
* [Package]
05
* com.lxd.widgets
06
* [FileName]
07
* CustomProgressDialog.java
08
* [Copyright]
09
* Copyright 2012 LXD All Rights Reserved.
10
* [History]
11
* Version Date Author Record
12
*--------------------------------------------------------------------------------------
13
* 1.0.0 2012-4-27 lxd (rohsuton@gmail.com) Create
14
**************************************************************************************/
15
16
package com.lxd.widgets;
17
18
19
import com.lxd.activity.R;
20
21
import android.app.Dialog;
22
import android.content.Context;
23
import android.graphics.drawable.AnimationDrawable;
24
import android.view.Gravity;
25
import android.widget.ImageView;
26
import android.widget.TextView;
27
28
29
/********************************************************************
30
* [Summary]
31
* TODO 请在此处简要描述此类所实现的功能。因为这项注释主要是为了在IDE环境中生成tip帮助,务必简明扼要
32
* [Remarks]
33
* TODO 请在此处详细描述类的功能、调用方法、注意事项、以及与其它类的关系.
34
*******************************************************************/
35
36
public class CustomProgressDialog extends Dialog {
37
private Context context = null;
38
private static CustomProgressDialog customProgressDialog = null;
39
40
public CustomProgressDialog(Context context){
41
super(context);
42
this.context = context;
43
}
44
45
public CustomProgressDialog(Context context, int theme) {
46
super(context, theme);
47
}
48
49
public static CustomProgressDialog createDialog(Context context){
50
customProgressDialog = newCustomProgressDialog(context,R.style.CustomProgressDialog);
51
customProgressDialog.setContentView(R.layout.customprogressdialog);
52
customProgressDialog.getWindow().getAttributes().gravity = Gravity.CENTER;
53
54
return customProgressDialog;
55
}
56
57
public void onWindowFocusChanged(boolean hasFocus){
58
59
if (customProgressDialog == null){
60
return;
61
}
62
63
ImageView imageView = (ImageView) customProgressDialog.findViewById(R.id.loadingImageView);
64
AnimationDrawable animationDrawable = (AnimationDrawable) imageView.getBackground();
65
animationDrawable.start();
66
}
67
68
/**
69
*
70
* [Summary]
71
* setTitile 标题
72
* @param strTitle
73
* @return
74
*
75
*/
76
public CustomProgressDialog setTitile(String strTitle){
77
return customProgressDialog;
78
}
79
80
/**
81
*
82
* [Summary]
83
* setMessage 提示内容
84
* @param strMessage
85
* @return
86
*
87
*/
88
public CustomProgressDialog setMessage(String strMessage){
89
TextView tvMsg = (TextView)customProgressDialog.findViewById(R.id.id_tv_loadingmsg);
90
91
if (tvMsg != null){
92
tvMsg.setText(strMessage);
93
}
94
95
return customProgressDialog;
96
}
97
}
5.接下来就是写一个测试activity调用我们的progressDialog了。
01
package com.lxd.activity;
02
03
import com.lxd.widgets.CustomProgressDialog;
04
05
import android.app.Activity;
06
import android.os.AsyncTask;
07
import android.os.Bundle;
08
import android.view.Window;
09
import android.view.WindowManager;
10
11
public class MainFrame extends Activity {
12
private MainFrameTask mMainFrameTask = null;
13
private CustomProgressDialog progressDialog = null;
14
15
@Override
16
public void onCreate(Bundle savedInstanceState) {
17
super.onCreate(savedInstanceState);
18
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
19
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
20
WindowManager.LayoutParams.FLAG_FULLSCREEN);
21
22
setContentView(R.layout.main);
23
24
mMainFrameTask = new MainFrameTask(this);
25
mMainFrameTask.execute();
26
}
27
28
@Override
29
protected void onDestroy() {
30
stopProgressDialog();
31
32
if (mMainFrameTask != null && !mMainFrameTask.isCancelled()){
33
mMainFrameTask.cancel(true);
34
}
35
36
super.onDestroy();
37
}
38
39
private void startProgressDialog(){
40
if (progressDialog == null){
41
progressDialog = CustomProgressDialog.createDialog(this);
42
progressDialog.setMessage("正在加载中...");
43
}
44
45
progressDialog.show();
46
}
47
48
private void stopProgressDialog(){
49
if (progressDialog != null){
50
progressDialog.dismiss();
51
progressDialog = null;
52
}
53
}
54
55
public class MainFrameTask extends AsyncTask<Integer, String, Integer>{
56
private MainFrame mainFrame = null;
57
58
public MainFrameTask(MainFrame mainFrame){
59
this.mainFrame = mainFrame;
60
}
61
62
@Override
63
protected void onCancelled() {
64
stopProgressDialog();
65
super.onCancelled();
66
}
67
68
@Override
69
protected Integer doInBackground(Integer... params) {
70
71
try {
72
Thread.sleep(10 * 1000);
73
} catch (InterruptedException e) {
74
e.printStackTrace();
75
}
76
return null;
77
}
78
79
@Override
80
protected void onPreExecute() {
81
startProgressDialog();
82
}
83
84
@Override
85
protected void onPostExecute(Integer result) {
86
stopProgressDialog();
87
}
88
89
90
91
}
92
}
[/size]
相关推荐
本篇将详细介绍如何在Android中实现自定义ProgressDialog。 首先,我们要理解ProgressDialog的基本使用。ProgressDialog继承自Dialog,展示为一个带有进度条的对话框。通常有两种模式:indeterminate(不确定进度)...
下面我们将深入探讨如何在Android中自定义ProgressDialog,实现加载滚动条效果。 首先,我们需要创建一个新的布局文件,比如`custom_progress_dialog.xml`,来定义自定义对话框的视图结构。在这个布局文件中,我们...
本文将深入探讨如何在Android中自定义ProgressDialog对话框。 首先,要创建自定义ProgressDialog,我们需要继承自`DialogFragment`而不是直接使用`ProgressDialog`类。`DialogFragment`是Android推荐的处理对话框的...
android自定义ProgressDialog样式详解,一分钟教会你如何自定义android样式。
android 自定义组合progressdialog进度条,方便你的使用............................................................................................
在"Android 自定义ProgressDialog实例"这个主题中,我们将探讨如何实现两种自定义ProgressDialog的方法。 首先,我们需要了解ProgressDialog的基本使用。它有两种形式:一种是带圆形进度条的,另一种是不带进度条的...
要自定义ProgressDialog,我们通常需要重写其主题或通过代码设置属性。可以通过修改`styles.xml`文件中的主题来改变ProgressDialog的背景、颜色、字体等。例如,你可以创建一个新的主题,如`@style/...
本篇文章将详细讲解如何在Android中自定义ProgressDialog,以及如何实现带加载图片和文字说明的功能。 首先,我们需要创建一个新的类来继承自Dialog,因为ProgressDialog本质上就是Dialog的一个子类。这个类将作为...
本篇文章将详细讲解如何在Android中自定义ProgressDialog以实现加载滚动条效果,如"加载中…"或"请稍后…"等动态提示。 首先,我们需要创建一个自定义的布局文件来设计滚动条效果。在项目的res/layout目录下创建一...
总之,自定义`ProgressDialog`是提升Android应用用户体验的重要手段,通过帧动画的使用,我们可以让加载过程更加生动有趣。同时,这也是一个很好的实践,可以帮助开发者深入理解Android UI组件的自定义和动画机制。
在Android开发中,自定义ProgressDialog是一种常见的需求,它允许开发者根据应用的UI风格和功能需求定制加载进度对话框。在给定的标题“android 自定义progressdialog”中,我们可以了解到这个话题是关于如何在...
Android 自定义 ProgressDialog 加载效果是指在 Android 应用程序中对 ProgressDialog 的自定义加载效果的实现。ProgressDialog 是 Android 提供的一个对话框组件,用于显示应用程序的加载进度。通过自定义 ...
在“Dialog_Test”中,我们可以看到一个实际的自定义ProgressDialog的实现,包括布局设计、类的创建以及在代码中的使用。通过这个例子,开发者可以了解到如何根据自己的需求打造独特的加载提示,提升应用的用户体验...
自定义ProgressDialog可以使开发者根据项目需求定制对话框的样式、功能和交互,使其更符合品牌形象或者提供更好的用户体验。本教程将详细介绍如何创建并集成一个简单易用且可扩展的自定义ProgressDialog。 首先,...
总结起来,自定义ProgressDialog是提升Android应用用户体验的重要手段。通过创建独特的布局和定制的逻辑,开发者可以打造出符合应用风格且功能强大的加载指示器。在实际开发中,要确保自定义的ProgressDialog不仅...
总的来说,Android开发者可以通过自定义ProgressDialog的布局和动画来实现更加美观和个性化的加载提示。这不仅能让用户感受到应用的专业性,还可以在等待过程中提供更好的视觉反馈,从而提升整体的用户体验。在设计...
在Android开发中,ProgressDialog是一种常见的UI...自定义ProgressDialog的实现不仅限于隐藏进度值,还可以扩展以实现更多的功能,如添加自定义动画、更改样式等,这完全取决于你的创造力和对Android UI组件的理解。