Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> android開發教程之實現toast工具類

android開發教程之實現toast工具類

編輯:Android開發實例

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

 }

}

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved