Android Toast使用的简单小结(推荐)
程序员文章站
2022-07-06 14:55:08
老规矩,先上效果图吧主要实现了几种常用的方式:1.最基本的toast系统自带toast采用的是队列的方式, 等当前toast消失后, 下一个toast才能显示出来;原因是toast的管理是在队列中,点...
老规矩,先上效果图吧
主要实现了几种常用的方式:
1.最基本的toast
系统自带toast采用的是队列的方式, 等当前toast消失后, 下一个toast才能显示出来;原因是toast的管理是在队列中,点击一次,就会产生一个新的toast,要等这个队列中的toast处理完,这个显示toast的任务才算结束。so~ 我们可以把toast改成单例模式,没有toast再新建它,这样也就解决了连续点击toast,一直在显示的问题。
2.自定义位置的toast
3.自定义布局(带图片)的toast
4.自定义带动画效果的toast控件
ok,下面上代码
代码实现:
先上activity的代码
public class toastactivity extends basetitleactivity { @bindview(r.id.btn_basic_toast) button basictoast; @bindview(r.id.btn_basic_toast2) button basictoast2; @bindview(r.id.btn_custom_location) button customlocation; @bindview(r.id.btn_custom_picture) button custompicture; @bindview(r.id.btn_custom_smile) button customsmile; @bindview(r.id.btn_custom_smile2) button customsmile2; // private static customtoast customtoastview; public static void newinstance(context context){ intent intent = new intent(context, toastactivity.class); context.startactivity(intent); } @override protected void oncreate(@nullable bundle savedinstancestate) { super.oncreate(savedinstancestate); } @override public int getresourcesid() { return r.layout.activity_toast; } @override public void initview() { } @override public void initdata() { } @override public int gettitletext() { return r.string.play_toast; } @onclick( {r.id.btn_basic_toast, r.id.btn_custom_location, r.id.btn_custom_picture, r.id.btn_custom_smile, r.id.btn_custom_smile2, r.id.btn_basic_toast2} ) public void onviewclick(view v){ switch (v.getid()){ /* 最基本的toast,解决了原生toast不能快速更新的问题 */ case r.id.btn_basic_toast: toastutils.showtoast(this, "这是最基本的toast"); break; case r.id.btn_basic_toast2: toastutils.showtoast(this, "===已更新==="); break; /* 自定义位置的toast * 相对于gravity.left位置, x方向上的偏移量, y方向上的偏移量 */ case r.id.btn_custom_location: toast toast = toast.maketext(toastactivity.this, "自定义位置的toast", toast.length_short); toast.setgravity(gravity.left,0, 0); toast.show(); break; /* 带图片的toast,自定义布局 * 参考 toast.maketext() 方法 */ case r.id.btn_custom_picture: toast result = new toast(this); view toastview = layoutinflater.from(this).inflate(r.layout.toast_custom, null); imageview img = (imageview) toastview.findviewbyid(r.id.iv_img); textview msg = (textview) toastview.findviewbyid(r.id.tv_msg); img.setimageresource(r.mipmap.jyfr_icon_mpossh3x); msg.settext(r.string.picture_toast); result.setview(toastview); result.setgravity(gravity.bottom, 0 , 0); result.setduration(toast.length_short); result.show(); break; /* 自定义toast控件,带个动画效果 * 解决了原生toast不能快速更新的问题 * 但是并没有摆脱原生toast显示方法的调用 */ case r.id.btn_custom_smile: toastutils.showtoast(this, "在看我", true); break; case r.id.btn_custom_smile2: toastutils.showtoast(this, "==还在看我==", true); break; default: break; } } }
对应的布局代码较为简单,就不贴了
下面是第四种效果实现的布局
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dp" android:background="@drawable/shape_background_toast"> <imageview android:id="@+id/iv_img" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:scaletype="center" android:visibility="visible"/> <com.example.xuetaotao.helloworld.widget.customtoast android:id="@+id/smileview" android:layout_width="50dp" android:layout_height="50dp" android:layout_margin="10dp" android:layout_gravity="center" /> <textview android:id="@+id/tv_msg" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:text="" android:textsize="18sp" android:textcolor="@color/common_blue"/> </linearlayout>
接着是自定义控件部分的代码
public class customtoast extends view { /** * 初始化一些变量 * 实现3个构造函数 * 初始化画笔参数和矩形参数 * 设置画笔的参数及矩形的参数 * 重写onmeasure:onmeasure()方法中主要负责测量,决定控件本身或其子控件所占的宽高 * 重写ondraw:ondraw()方法负责绘制,即如果我们希望得到的效果在android原生控件中没有现成的支持,那么我们就需要自己绘制我们的自定义控件的显示效果。 * 自定义view中的动画效果实现 */ private toast toast; private context context; rectf rectf = new rectf(); //矩形,设置toast布局时使用 valueanimator valueanimator; //属性动画 private paint paint; //自定义view的画笔 float manimatedvalue = 0f; private float mwidth = 0f; //view的宽 private float mpadding = 0f; //view的内边距 private float endangle = 0f; //圆弧结束的度数 private float meyewidth = 0f; //笑脸的眼睛半径 private boolean issmileleft = false; private boolean issmileright = false; public customtoast(context context){ super(context); this.context = context; } public customtoast(context context, attributeset attrs){ super(context, attrs); this.context = context; } public customtoast(context context, attributeset attrs, int defstyleattr){ super(context, attrs, defstyleattr); this.context = context; } private void initpaint(){ paint = new paint(); paint.setantialias(true); //抗锯齿 paint.setstyle(paint.style.stroke); //画笔的样式:空心 paint.setcolor(color.parsecolor("#5cb85c")); //绘制的颜色 paint.setstrokewidth(dip2px(2)); //设置笔刷的粗细 } private void initrect(){ rectf = new rectf(mpadding, mpadding, mwidth-mpadding, mwidth-mpadding); } //dip转px。为了支持多分辨率手机 public int dip2px(float dpvalue){ final float scale = getcontext().getresources().getdisplaymetrics().density; return (int) (dpvalue * scale + 0.5f); } @override protected void onmeasure(int widthmeasurespec, int heightmeasurespec) { super.onmeasure(widthmeasurespec, heightmeasurespec); initpaint(); initrect(); mwidth = getmeasuredwidth(); //view的宽度 mpadding = dip2px(10); meyewidth = dip2px(3); } //每次触摸了自定义view/viewgroup时都会触发ondraw()方法 @override protected void ondraw(canvas canvas) { super.ondraw(canvas); paint.setstyle(paint.style.stroke); canvas.drawarc(rectf, 180, endangle, false, paint ); //画微笑圆弧 paint.setstyle(paint.style.fill); //画笔的样式:实心 if (issmileleft){ canvas.drawcircle(mpadding+meyewidth+meyewidth/2, mwidth/3, meyewidth, paint); //绘制圆圈 } if (issmileright){ canvas.drawcircle(mwidth-mpadding-meyewidth-meyewidth/2, mwidth/3, meyewidth, paint); } } //开启动画 public void startanimator(boolean playanimate){ if (playanimate){ stopanimator(); startviewanim(0f, 1f, 2000); } } //停止动画 public void stopanimator(){ if (valueanimator != null){ clearanimation(); issmileleft = false; issmileright = false; manimatedvalue = 0f; valueanimator.end(); } } /** * 开始动画 * @param start 起始值 * @param end 结束值 * @param time 动画的时间 * @return */ public valueanimator startviewanim(float start, float end, long time){ valueanimator = valueanimator.offloat(start, end); //设置 valueanimator 的起始值和结束值 valueanimator.setduration(time); //设置动画时间 valueanimator.setinterpolator(new linearinterpolator()); //设置补间器,控制动画的变化速率 valueanimator.addupdatelistener(new valueanimator.animatorupdatelistener() { //设置监听器。监听动画值的变化,做出相应方式 @override public void onanimationupdate(valueanimator animation) { manimatedvalue = (float) valueanimator.getanimatedvalue(); if (manimatedvalue < 0.5){ issmileleft = false; issmileright = false; endangle = -360 * (manimatedvalue); } else if (manimatedvalue > 0.55 && manimatedvalue < 0.7){ endangle = -180; issmileleft = true; issmileright = false; } else{ endangle = -180; issmileleft = true; issmileright = true; } postinvalidate(); //重绘 } }); if (!valueanimator.isrunning()){ valueanimator.start(); } return valueanimator; } /** * 本质上还是依赖android原生toast的显示方法来进行显示, * 只是引入了自定义的布局,添加了自定义动画 */ public void show(string message, boolean playanimate){ /* 解决多次点击toast一直提示不消失问题 */ if (toast == null){ toast = new toast(context); } view customtoastview = layoutinflater.from(context).inflate(r.layout.toast_custom, null); textview msg2 = (textview) customtoastview.findviewbyid(r.id.tv_msg); msg2.settext(message); msg2.setbackgroundresource(r.drawable.shape_text_toast); msg2.settextcolor(color.parsecolor("#ffffff")); imageview img2 = (imageview) customtoastview.findviewbyid(r.id.iv_img); img2.setimageresource(r.mipmap.jyfr_icon_mpossh3x); // img2.setvisibility(view.gone); customtoast customtoast = (customtoast) customtoastview.findviewbyid(r.id.smileview); customtoast.startanimator(playanimate); toast.setview(customtoastview); toast.setgravity(gravity.bottom, 0 , 0); toast.setduration(toast.length_short); toast.show(); } }
最后把效果一和四共用到的工具类贴上来,主要是为了解决连续点击toast,一直在显示的问题。补充一点:效果四仍然是基于系统原生toast的显示方法来显示的,所以那个连续点击一直显示的问题还是存在的,后面再试试不用这种方式吧。
public class toastutils { private static toast toast; private static customtoast customtoast; /** * 自定义customtoast的显示 * @param context 上下文 * @param message 提示内容 * @param playanimate 是否显示动画 true,显示 false,不显示 */ public static void showtoast(context context, string message, boolean playanimate){ if (customtoast == null){ customtoast = new customtoast(context); } customtoast.show(message, playanimate); } /** * android原生toast的显示,主要解决点多少就提示多少次的问题 */ public static void showtoast(context context, string content){ if (toast == null){ toast = toast.maketext(context, content, toast.length_short); } else { toast.settext(content); } toast.show(); } }
ok,完成,新手入门学习报到~
到此这篇关于android toast使用的简单小结的文章就介绍到这了,更多相关android toast使用内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
推荐阅读
-
浅谈Android注解在日常开发中的简单使用
-
使用Python进行二进制文件读写的简单方法(推荐)
-
Android 中自定义ContentProvider与ContentObserver的使用简单实例
-
Android中使用Kotlin实现一个简单的登录界面
-
Android编程使用GestureDetector实现简单手势监听与处理的方法
-
使用Python进行二进制文件读写的简单方法(推荐)
-
Android RecyclerView的简单使用
-
Android编程使用GestureDetector实现简单手势监听与处理的方法
-
Android中使用Kotlin实现一个简单的登录界面
-
Android使用Activity实现简单的可输入对话框