android开发教程之实现toast工具类
程序员文章站
2023-08-29 19:05:03
android中不用再每次都写烦人的toast了,直接调用这个封装好的类,就可以使用了!
复制代码 代码如下:package com.zhanggeng.contact....
android中不用再每次都写烦人的toast了,直接调用这个封装好的类,就可以使用了!
复制代码 代码如下:
package com.zhanggeng.contact.tools;
/**
* toasttool can make you use toast more easy ;
*
* @author zhanggeng
* @version v1.0.1
* @since jdk5.0
*
*/
import android.content.context;
import android.widget.toast;
public class toasttool {
/**
*
* @param context the class's context , where want to use this tool
* @param message the message will be show
*/
public static void mytoast(context context ,string message){
toast.maketext(context, message, toast.length_short).show();
}
}
推荐阅读
-
Android开发之图片压缩工具类完整实例
-
Android开发实现的获取sdcard大小及内存大小工具类
-
Android开发实现的几何图形工具类GeometryUtil完整实例
-
Android开发实现的IntentUtil跳转多功能工具类【包含视频、音频、图片、摄像头等操作功能】
-
Android开发中4个常用的工具类【Toast、SharedPreferences、网络及屏幕操作】
-
Android开发之拼音转换工具类PinyinUtils示例
-
android开发教程之实现toast工具类
-
Android开发实现的内存管理工具类
-
Android开发之图片切割工具类定义与用法示例
-
Android开发实现查询远程服务器的工具类QueryUtils完整实例