网络加载时需要一段时间,这段时间可以加载一个加载中对话框,这里定义了两个,一个是加载普通图片做成的桢动画,一个是git动画
(1)CustomProgressDialog.java
/************************************************************************************** * [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; //外部可以点击消失 setCanceledOnTouchOutside(true); } public CustomProgressDialog(Context context, int theme) { super(context, theme); //外部可以点击消失 setCanceledOnTouchOutside(true); } 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; } }
(2)CustomProgressDialogWithGif.java
/************************************************************************************** * [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 android.app.Dialog; import android.content.Context; import android.content.DialogInterface; import android.view.Gravity; import android.widget.TextView; import com.lxd.activity.R; import com.lxd.view.gifview.GifView; /******************************************************************** * [Summary] * TODO 请在此处简要描述此类所实现的功能。因为这项注释主要是为了在IDE环境中生成tip帮助,务必简明扼要 * [Remarks] * TODO 请在此处详细描述类的功能、调用方法、注意事项、以及与其它类的关系. *******************************************************************/ /** * 加入gif动画 * * @author chenwenbiao * @date 2014-4-24 下午5:57:16 * @version V1.0 */ public class CustomProgressDialogWithGif extends Dialog{ private GifView gifView = null; private TextView tvMsg = null; public CustomProgressDialogWithGif(Context context , String strMessage){ this(context,R.style.CustomProgressDialog , strMessage); } public CustomProgressDialogWithGif(Context context, int theme , String strMessage) { super(context, theme); setContentView(R.layout.customprogressdialog_with_gif); getWindow().getAttributes().gravity = Gravity.CENTER; gifView = (GifView)findViewById(R.id.loading_anim_gif); tvMsg = (TextView)findViewById(R.id.loading_tips_tv); if (strMessage != null){ tvMsg.setText(strMessage); } setOnDismissListener(new OnDismissListener() { @Override public void onDismiss(DialogInterface dialog) { destroyGif(); } }); gifView.setGifImage(R.drawable.loading4); gifView.setLoopAnimation(); } /** * 记得要消毁gifview,不然程序会卡死 */ private void destroyGif() { if (gifView != null) { gifView.destroy(); } gifView = null; } }
(3)MainActivity.java
package com.lxd.activity; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.view.Window; import android.view.WindowManager; import com.lxd.widgets.CustomProgressDialog; import com.lxd.widgets.CustomProgressDialogWithGif; public class MainActivity extends Activity { private String TAG = getClass().getName(); // private CustomProgressDialogWithGif gifProgressDialog = null; private CustomProgressDialog imageProgressDialog = null; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏 this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉信息栏 setContentView(R.layout.main); View gifBtn = findViewById(R.id.gif_custom_preogeress_dialog_btn); gifBtn.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) { /** * gif图片占用内存大,需要及时释放,这里到的时候就重新生成,对话框一关闭,自动调用 */ CustomProgressDialogWithGif gifProgressDialog = new CustomProgressDialogWithGif(MainActivity.this , "正在加载中..."); gifProgressDialog.show(); } }); View imageBtn = findViewById(R.id.image_custom_preogeress_dialog_btn); imageProgressDialog = CustomProgressDialog.createDialog(this); imageProgressDialog.setMessage("正在加载中..."); imageBtn.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { imageProgressDialog.show(); } }); } }
这里值得注意是gif图片加载要及时消毁,要用就new出来。
styles.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <!-- 自定义弹窗的样式 --> <style name="CustomDialog" parent="@android:style/Theme.Dialog"> <item name="android:windowFrame">@null</item> <item name="android:windowIsFloating">true</item> <item name="android:windowContentOverlay">@null</item> <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item> <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item> </style> <style name="CustomProgressDialog" parent="@style/CustomDialog"> <item name="android:windowBackground">@color/transparent</item> <item name="android:windowNoTitle">true</item> </style> </resources>
效果图:
(1)主界面
(2)普通图片主界
(3)gif动画界面
相关推荐
在Android开发中,自定义对话框(Custom Dialog)和PopupWindow是两个常用的功能,用于提供交互式的用户界面。本文将详细解析如何在Android应用中实现自定义单选、多选对话框以及PopWindow窗口,并通过实例源码进行...
在Android开发中,自定义加载对话框ProgressDialog是一种常见的需求,特别是在执行耗时操作如网络请求、数据处理等场景,为了提供良好的用户体验,我们通常会显示一个加载指示器,让用户知道应用正在后台工作。...
在Windows XP系统中,用户界面的设计风格以其直观和易用性而受到用户的喜爱,其中自定义工具栏对话框是其一大特色。这个对话框允许用户根据个人习惯和需求,自由添加、移除或重新排列工具栏上的按钮和功能。本文将...
3. 将自定义布局加载到PopWindow:通过LayoutInflater填充布局到PopWindow中。 4. 显示PopWindow:定位到特定视图的上方、下方或指定位置。 5. 注册监听器:处理PopWindow的显示、隐藏以及触摸事件。 通过这个实例...
通过`LayoutInflater`加载这个布局,并添加到自定义的`Dialog`或者`PopupWindow`中。同时,可以通过监听`RadioGroup`的`OnCheckedChangeListener`来获取用户的选择。 接下来,我们讨论“多选对话框”。与单选不同,...
- **自定义对话框**:开发者可以使用`AlertDialog.Builder`或`ProgressDialog`来创建加载对话框。通过设置对话框的标题、消息、样式等属性,可以定制符合应用风格的加载对话框。 - **使用库**:像`MaterialDialog`...
2. **构建对话框**:在Java代码中,我们需要实例化`AlertDialog.Builder`,设置标题、消息、确认和取消按钮的回调,并加载我们的自定义布局。然后,我们需要创建一个`ArrayAdapter`来填充`ListView`,并设置每个列表...
本教程将深入讲解如何通过源码实现自定义单选对话框、多选对话框以及PopWindow窗口,以此来增强应用的交互性和美观性。 首先,我们来看自定义单选对话框。在Android的默认组件中,AlertDialog只提供了基本的单选...
自定义布局通常包含标题、内容和操作按钮,可以通过LayoutInflater将XML布局文件加载到Dialog中。 单选对话框通常用于让用户在有限的几个选项中选择一个。在自定义的单选对话框中,开发者可能会使用`RadioGroup`...
这个源码示例主要展示了如何创建自定义的单选对话框、多选对话框以及popWindow窗口,这些都是Android应用中常见的交互元素。下面将详细介绍这些知识点。 1. 自定义单选对话框: 在Android原生API中,AlertDialog...
在Android开发中,自定义对话框(Dialog)和PopWindow是两种常见的用户界面组件,用于显示临时信息或进行简单的交互操作。本实例源码“CustomDialogDemo”将深入讲解如何在Android应用中实现自定义的单选对话框、...
本实例源码主要涉及了两个关键组件:自定义单选对话框和多选对话框,以及POPWindow(气泡窗口)的实现。这些组件在日常应用中经常用于提供用户交互,如设置、选择、通知等场景。下面我们将详细探讨这些知识点。 1. ...
在源码中,开发者可能会创建一个自定义的布局XML文件,然后使用`setView()`方法加载这个布局到对话框中。此外,为了处理用户的选择,需要实现监听器,如`OnClickListener`或`OnCheckedChangeListener`。 其次,**...
3. 反馈机制:当用户进行操作时,对话框应提供即时反馈,如按钮的按下效果、加载状态的显示等。 4. 适量信息:对话框内信息应精简,避免过长的文本或过多的选项,以防止用户感到困扰或混乱。 5. 恰当的关闭方式:...