文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android模拟美团客户端进度提示框

2022-06-06 09:53

关注

用过美团客户端的朋友都知道,美团的加载等待提示很有意思,是一种动画的形式展现给我们,下面我们就对这背后的原理进行了解,然后实现自己的等待动画效果。
首先我们准备两张图片:

这两张图片看起来一模一样啊?细心的朋友会发现唯一不同的就在脚部,OK,我们就利用这两张图片的轮换播放实现动画效果,下面看一下代码:
1.动画文件frame_meituan.xml:


<?xml version="1.0" encoding="utf-8"?> 
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" 
 android:oneshot="false" > 
 <item 
 android:drawable="@drawable/progress_loading_image_01" 
 android:duration="150"/> 
 <item 
 android:drawable="@drawable/progress_loading_image_02" 
 android:duration="150"/> 
</animation-list> 

150毫秒进行图片的切换,模拟动画效果。
2.简单自定义一个控件-MeituanProgressDialog.java:


package com.finddreams.runningman; 
import android.app.ProgressDialog; 
import android.content.Context; 
import android.graphics.drawable.AnimationDrawable; 
import android.os.Bundle; 
import android.widget.ImageView; 
import android.widget.TextView; 
import com.example.runningman.R; 
 
public class MeituanProgressDialog extends ProgressDialog { 
 private AnimationDrawable mAnimation; 
 private Context mContext; 
 private ImageView mImageView; 
 private String mLoadingTip; 
 private TextView mLoadingTv; 
 private int count = 0; 
 private String oldLoadingTip; 
 private int mResid; 
  
 public MeituanProgressDialog(Context context, String content, int id) { 
 super(context); 
 this.mContext = context; 
 this.mLoadingTip = content; 
 this.mResid = id; 
 setCanceledOnTouchOutside(true); 
 } 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
 super.onCreate(savedInstanceState); 
 initView(); 
 initData(); 
 } 
 private void initData() { 
 mImageView.setBackgroundResource(mResid); 
 // 通过ImageView对象拿到背景显示的AnimationDrawable 
 mAnimation = (AnimationDrawable) mImageView.getBackground(); 
 mImageView.post(new Runnable() { 
 @Override 
 public void run() { 
 mAnimation.start(); 
 } 
 }); 
 mLoadingTv.setText(mLoadingTip); 
 } 
 public void setContent(String str) { 
 mLoadingTv.setText(str); 
 } 
 private void initView() { 
 setContentView(R.layout.progress_dialog);// 显示界面 
 mLoadingTv = (TextView) findViewById(R.id.loadingTv); 
 mImageView = (ImageView) findViewById(R.id.loadingIv); 
 } 
} 

上面用到的提示布局文件的progress_dialog.xml:


<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:layout_gravity="center" 
 android:orientation="vertical" > 
 <ImageView 
 android:id="@+id/loadingIv" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:background="@anim/frame_meituan"/> 
 <TextView 
 android:id="@+id/loadingTv" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:layout_alignBottom="@+id/loadingIv" 
 android:layout_centerHorizontal="true" 
 android:textSize="20sp" 
 android:text="正在加载中.." /> 
</RelativeLayout> 

最后在Activity中调用:


package com.finddreams.runningman; 
import com.example.runningman.R; 
import android.app.Activity; 
import android.os.Bundle; 
import android.os.Handler; 
import android.view.View; 
 
public class MeiTuanManActivity extends Activity { 
 private MeituanProgressDialog dialog; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
 super.onCreate(savedInstanceState); 
 setContentView(R.layout.meituan_progressdialog); 
 } 
  
 public void showmeidialog(View v){ 
 dialog =new MeituanProgressDialog(this, "正在加载中",R.anim.frame_meituan); 
 dialog.show(); 
 Handler handler =new Handler(); 
 handler.postDelayed(new Runnable() { 
 @Override 
 public void run() { 
 dialog.dismiss(); 
 } 
 }, 3000);//3秒钟后调用dismiss方法隐藏; 
 } 
} 

最后,让我们的程序跑起来:

ok,跑起来了,你想要加入你的项目,只需要准备两张图片替换下来即可模拟动画。

您可能感兴趣的文章:Android中仿IOS提示框的实现方法Android使用Toast显示消息提示框IOS 仿Android吐司提示框的实例(分享)Android 自定义一套 Dialog通用提示框 (代码库)Android仿IOS自定义AlertDialog提示框Android仿QQ、微信聊天界面长按提示框效果Android仿百度谷歌搜索自动提示框AutoCompleteTextView简单应用示例Android超实用的Toast提示框优化分享Android实现Toast提示框图文并存的方法Android编程之自定义AlertDialog(退出提示框)用法实例android 弹出提示框的使用(图文实例)Android实现简单的popupwindow提示框


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯