Android实现加载对话框
作者:楠之枫雪 时间:2023-10-24 14:48:36
本文实例为大家分享了Android实现加载对话框的具体代码,供大家参考,具体内容如下
这里简单说一下两种实现加载对话框的方式:1.使用动画让一个图片旋转 2.使用progressbar。
感觉简单来说,dialog就是一个弹出的window,把自己定义的布局放置到window里面就可以了,加载对话框就是有个加载的动画,核心的地方就是实现这个动画,所所以方法 可以有,对图片添加动画,或者使用progressbar。
第一种方式:使用动画让一个图片旋转
先看一下布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/dialog_bg_while"
android:orientation="vertical" >
<ImageView
android:layout_width="54dp"
android:id="@+id/loading_dialog_pic"
android:layout_height="54dp"
android:layout_gravity="center_horizontal"
android:layout_marginTop="15dp"
android:background="@drawable/loading" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="10dp"
android:text="正在加载..." />
</LinearLayout>
然后自定义Alertdialog,并对图片添加旋转动画:
public class LoadingDialog extends AlertDialog {
private final String DEFAULT_TEXT="正在加载";
private ImageView mImageview;
private TextView mTextView;
private LinearLayout mLayout;
private String mText;
protected LoadingDialog(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
mLayout=(LinearLayout) LinearLayout.inflate(getContext(), R.layout.loading_dialog, null);
mImageview=(ImageView) mLayout.findViewById(R.id.loading_dialog_pic);
mTextView=(TextView) mLayout.findViewById(R.id.loading_dialog_text);
loadanimation();
getWindow().setContentView(mLayout);
}
private void loadanimation() {//对图片添加旋转动画
// TODO Auto-generated method stub
Animation anim=AnimationUtils.loadAnimation(getContext(), R.anim.loading_dialog_anim);
LinearInterpolator lin = new LinearInterpolator();
anim.setInterpolator(lin);
mImageview.setAnimation(anim);
}
}
看一下xml的动画:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<rotate
android:duration="1500"
android:pivotX="50%"
android:pivotY="50%"
android:fromDegrees="0.0"
android:repeatCount="infinite"
android:toDegrees="-358" />
</set>
第二种方式:使用progressbar
首先是一个animation-list:
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:drawable="@drawable/loading1"
android:duration="100"/>
<item
android:drawable="@drawable/loading2"
android:duration="100"/>
<item
android:drawable="@drawable/loading3"
android:duration="100"/>
<item
android:drawable="@drawable/loading4"
android:duration="100"/>
<item
android:drawable="@drawable/loading5"
android:duration="100"/>
<item
android:drawable="@drawable/loading6"
android:duration="100"/>
<item
android:drawable="@drawable/loading7"
android:duration="100"/>
<item
android:drawable="@drawable/loading8"
android:duration="100"/>
</animation-list>
看一下布局的实现:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/dialog_bg_while"
android:orientation="vertical" >
<ProgressBar
style="@android:style/Widget.ProgressBar.Large"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="10dp"
android:indeterminateDrawable="@drawable/loading_animation_list"
android:indeterminateDuration="1500" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#00BCD4" />
<TextView
android:id="@+id/loading_dialog_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="10dp"
android:text="正在加载..." />
</LinearLayout>
然后自定义一个alertdialog:
public class LoadingDialog extends AlertDialog {
private final String DEFAULT_TEXT="正在加载";
private TextView mTextView;
private LinearLayout mLayout;
private String mText;
protected LoadingDialog(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
mLayout=(LinearLayout) LinearLayout.inflate(getContext(), R.layout.loading_dialog, null);
mTextView=(TextView) mLayout.findViewById(R.id.loading_dialog_text);
WindowManager m=(WindowManager) getContext().getSystemService(getContext().WINDOW_SERVICE);
int windowwith=m.getDefaultDisplay().getWidth();
int w=windowwith*3/5;
int h=300;
getWindow().setLayout(w, h);//设置对话框窗体大小
getWindow().setContentView(mLayout);
}
}
来源:https://blog.csdn.net/u014614038/article/details/47809393
标签:Android,对话框
0
投稿
猜你喜欢
C# 生成随机数的代码
2021-06-16 06:05:43
Java OpenCV4.0.0实现实时人脸识别
2023-11-16 07:29:14
Android基础教程数据存储之文件存储
2023-08-05 18:18:10
Android外部存储无法访问问题解决方法
2021-12-17 06:52:12
java中的interface接口实例详解
2023-10-12 22:03:10
java小程序之控制台字符动画的实现
2022-10-30 08:21:27
Spring Boot配置Thymeleaf(gradle)的简单使用
2023-04-18 07:41:42
java根据不同的参数调用不同的实现类操作
2021-11-08 17:05:16
C#对文件进行加密解密代码
2023-03-22 12:17:18
C# params可变参数的使用注意详析
2021-10-29 12:33:27
IDEA远程管理docker镜像及容器服务的实现
2022-01-07 16:26:48
Java后台实现微信支付和微信退款
2023-09-06 13:44:00
Android自定义View实现支付宝咻一咻效果
2022-08-06 11:02:14
Android WebView 的简单使用
2021-09-01 11:52:54
C#使用listView增删操作实例
2023-03-25 12:34:52
Kotlin语言编程Regex正则表达式实例详解
2023-06-22 02:06:29
C# 语音功能的实现方法
2023-03-15 13:40:51
jstl标签基础开发步骤(详解)
2023-07-08 18:25:41
Java中Function的使用及说明
2023-08-12 03:04:29
Android仿微信二维码和条形码
2021-09-02 03:46:22