欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

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();

 }

}