最近遇到一个需求,要实现一个自定义Toast,先看效果
下面是简单实现自定义Toast的步骤:
① 需要一个XML,就是自定义Toast的布局,如下:
<?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:orientation="horizontal">
<LinearLayout
android:paddingTop="6dp"
android:paddingLeft="18dp"
android:paddingRight="18dp"
android:paddingBottom="6dp"
android:gravity="center_vertical"
android:background="@drawable/bg_coreners_black"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/iv_toast_img"
android:src="@mipmap/ic_cancel"
android:layout_width="22dp"
android:layout_height="22dp" />
<TextView
android:id="@+id/tv_toast_text"
android:text="自定义Toast"
android:layout_marginLeft="6dp"
android:textSize="16sp"
android:textColor="@color/white"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
相信上面圆角黑底的样式不用我说,大家都能轻松做出来,所以下面只给出代码
不错,就是利用Android的shape
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="5dp"/>
<solid android:color="#4a4b4b"/>
</shape>
剩下那个小图标的话就请大家自己去找吧,在网站EasyIcon 上类似这样的小图标有很多。
②然后,就是主要代码了,很少,很容易看懂,注释写在里面了。
/**
* 自定义Toast
* @param context
* @param message
*/
public static void CustomToast(Context context,String message){
//利用上下文new一个Toast对象
toast = new Toast(context);
//显示的时间
toast.setDuration(Toast.LENGTH_SHORT);
//显示的位置
toast.setGravity(Gravity.BOTTOM, 0, 300);
//实例化刚才写好的XML文件
toastLayout = LayoutInflater.from(context).inflate(R.layout.toast, null);
//可以动态的设置小图标
imageView = (ImageView) toastLayout.findViewById(R.id.iv_toast_img);
imageView.setImageResource(R.mipmap.ic_ok);
//动态设置message内容
textView = (TextView) toastLayout.findViewById(R.id.tv_toast_text);
textView.setText(message);
toast.setView(toastLayout);
//让这个自定义的Toast显示
toast.show();
}
下面我们来看一下如何调用,上面的代码可以写在一个ToastUtils工具类里面,写成静态方法,然后只需要传递上下文进来就OK了
ToastUtils.CustomToast(getContext(), "自定义Toast");
至此,自定义Toast完成,是不是很简单呢,如果帮助到您,请点一下赞哦,O(∩_∩)O~~