Android工具类Toast自定义图片和文字

作者:zhouzhangfu 时间:2021-11-15 08:22:44 

有时候我们做Android开发,需要弹一个用户提示,但是有时候设计的提示弹窗是带有图片的,我们每次写一个特别麻烦。所以我特地封装了一个工具类,在需要弹窗的地方调用对应的方法即可,根据需要可以传文字和图片资源id,方便自定义Toast弹窗提示。

下面是效果图

Android工具类Toast自定义图片和文字

自定义工具类代码


/**
* Created by zzf on 2018/7/7.
* 一个自定义的吐司工具类,可以修改任意布局
*/

public class ToastUtils {

private static Context mContext = OcreanSonicApplication.getContext();

public static void showToast(String toast) {
   Toast.makeText(mContext, toast, Toast.LENGTH_SHORT).show();
 }

/**
  * 带图片的吐司提示
  * @param text
  */
 public static void showCustomImgToast(String text) {
   LayoutInflater inflater = LayoutInflater.from(mContext);
   View view = inflater.inflate(R.layout.toast_view, null);
   ImageView imageView = (ImageView) view.findViewById(R.id.toast_image);
   imageView.setBackgroundResource(R.mipmap.pd_ic_finish);
   TextView t = (TextView) view.findViewById(R.id.toast_text);
   t.setText(text);
   Toast toast = null;
   if (toast != null) {
     toast.cancel();
   }
   toast = new Toast(mContext);
   toast.setDuration(Toast.LENGTH_SHORT);
   toast.setView(view);
   toast.show();
 }

/**
  * 带图片的吐司提示
  * 通过参数传递,可是设置吐司的图片和文字内容
  * @param text
  */
 public static void showCustomImgToast(String text,int imgResId) {
   LayoutInflater inflater = LayoutInflater.from(mContext);
   View view = inflater.inflate(R.layout.toast_view, null);
   ImageView imageView = (ImageView) view.findViewById(R.id.toast_image);
   imageView.setBackgroundResource(R.mipmap.pd_ic_finish);
   TextView t = (TextView) view.findViewById(R.id.toast_text);
   t.setText(text);
   Toast toast = null;
   if (toast != null) {
     toast.cancel();
   }
   toast = new Toast(mContext);
   toast.setDuration(Toast.LENGTH_SHORT);
   toast.setView(view);
   toast.show();
 }

/**
  * 不带图片的吐司提示
  * @param text
  */
 public static void showCustomToast(String text) {
   LayoutInflater inflater = LayoutInflater.from(mContext);
   View view = inflater.inflate(R.layout.toast_view, null);
   ImageView imageView = (ImageView) view.findViewById(R.id.toast_image);
   imageView.setVisibility(View.GONE);
   TextView t = (TextView) view.findViewById(R.id.toast_text);
   t.setText(text);
   Toast toast = null;
   if (toast != null) {
     toast.cancel();
   }
   toast = new Toast(mContext);
   toast.setDuration(Toast.LENGTH_SHORT);
   toast.setView(view);
   toast.show();
 }

/**
  * 带图片的吐司,设置吐司弹出的位置为屏幕中心
  * @param text
  */
 public static void showCustomToastCenter(String text) {
   showCustomToastCenter(text, R.mipmap.pd_ic_finish);
 }

/**
  * 带图片的吐司,设置吐司弹出的位置为屏幕中心
  * 通过参数传递,可是设置吐司的图片和文字内容
  * @param text
  */
 public static void showCustomToastCenter(String text, int imgResId) {
   LayoutInflater inflater = LayoutInflater.from(mContext);
   View view = inflater.inflate(R.layout.toast_view, null);
   ImageView imageView = (ImageView) view.findViewById(R.id.toast_image);
   imageView.setBackgroundResource(imgResId);
   TextView t = (TextView) view.findViewById(R.id.toast_text);
   t.setText(text);
   Toast toast = null;
   if (toast != null) {
     toast.cancel();
   }
   toast = new Toast(mContext);
   toast.setDuration(Toast.LENGTH_SHORT);
   toast.setView(view);
   toast.setGravity(Gravity.CENTER, 0, 0);
   toast.show();
 }
}

在自定义Toast中引用xml布局,用来放置图片和文字,设置id,可以任意在Java代码中设置


<?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="vertical">

<!-- android:minHeight="80dp"-->
 <LinearLayout
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_gravity="center"
   android:background="@drawable/shape_toast"
   android:minWidth="120dp"
   android:gravity="center"

android:orientation="vertical"
   android:padding="5dp">
   <!--android:background="@drawable/toast_bg"-->
   <ImageView
     android:id="@+id/toast_image"
     android:layout_width="30dp"
     android:layout_height="30dp"
     android:layout_gravity="center"
     android:layout_margin="2dp"
     android:background="@mipmap/pd_ic_finish"/>

<TextView
     android:id="@+id/toast_text"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_margin="2dp"
     android:layout_gravity="center"
     android:text="保存成功"
     android:textColor="#ffffff"
     android:textSize="15dp"/>
 </LinearLayout>

</LinearLayout>

来源:https://blog.csdn.net/zhouzhangfu/article/details/82114334

标签:Android,Toast
0
投稿

猜你喜欢

  • Java Spring Dubbo三种SPI机制的区别

    2022-05-04 00:29:51
  • 单例模式 分析代码优化方法

    2021-07-28 15:49:51
  • Springboot使用filter对response内容进行加密方式

    2023-11-17 15:29:25
  • java使用@Transactional时常犯的N种错误

    2021-08-16 01:58:44
  • Spring Security整合CAS的示例代码

    2023-11-12 19:04:26
  • SpringBoot停止启动时测试检查rabbitmq操作

    2023-04-06 10:05:05
  • java为何不能多继承的原因详解

    2023-10-12 04:45:00
  • Swift洗牌动画效果的实现方法

    2023-06-21 14:01:56
  • Spring MVC中使用Controller如何进行重定向

    2022-05-12 04:09:35
  • Java验证时间格式是否正确方法类项目实战

    2021-05-30 02:15:15
  • 操作xml,将xml数据显示到treeview的C#代码

    2023-01-02 19:56:48
  • 基于java构造方法Vector查找元素源码分析

    2023-11-29 04:33:30
  • 通过面试题解析 Java 类加载机制

    2022-08-13 12:49:16
  • 解决SpringBoot webSocket 资源无法加载、tomcat启动报错的问题

    2021-07-28 05:06:42
  • java实现死锁的示例代码

    2023-10-12 18:12:40
  • C#多线程系列之线程池

    2023-02-21 17:25:44
  • Entity Framework主从表的增删改

    2023-10-05 18:56:27
  • java文件输出流写文件的几种方法

    2023-11-08 16:17:30
  • struts2框架的登录制作图文教程

    2022-11-24 03:15:15
  • Java webservice的POST和GET请求调用方式

    2023-01-10 05:35:43
  • asp之家 软件编程 m.aspxhome.com