Android Toast 工具类

Posted monkey0928

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Toast 工具类相关的知识,希望对你有一定的参考价值。

android  中常用系统吐司工具类

package cn.yhq.utils;

import android.content.Context;
import android.widget.Toast;

/**
 * Created by hanbao on 2018/9/22.
 */

public class ToastUtils {

    public static void showToast(Context context, String message) {
        Toast.makeText(context, message, Toast.LENGTH_LONG).show();
    }

    public static void showToast(Context context, int message) {
        Toast.makeText(context, message, Toast.LENGTH_LONG).show();
    }
}

 

以上是关于Android Toast 工具类的主要内容,如果未能解决你的问题,请参考以下文章

Android基础工具类重构系列一Toast

星云 Android 开发工具箱

android ToastUtil工具类封装

Android:片段内的按钮操作

android源代码分析 android toast使用具体解释 toast自己定义

Android - 如何录制简单的声音片段?