編輯:關於android開發
package com.liunan.myfirstapp.util; import android.content.Context; import android.widget.Toast; /** * Toast工具類 * 能少寫就少寫 * * Created by 劉楠 on 2016-03-22. */ public class ToastUtils { /** * 彈出短時間提示 * * @param context 上下文 * @param msg 提示的信息 */ public static void showShort(Context context, String msg) { Toast.makeText(context, msg, Toast.LENGTH_SHORT).show(); } /** * 彈出長時間提示 * * @param context 上下文 * @param msg 提示的信息 */ public static void showLong(Context context, String msg) { Toast.makeText(context, msg, Toast.LENGTH_LONG).show(); } }
linux性能測試與監控 sar 命令sar(System Activity Reporter系統活動情況報告)是目前Linux上最為全面的系統性能分析工具之一,可以從多
【騰訊Bugly干貨分享】一步一步實現Android的MVP框架,buglyandroid本文來自於騰訊bugly開發者社區,非經作者同意,請勿轉載,原文地址:http:
Activity與Service進行數據交互,activityserviceAndroid啟動Service有兩種方法,一種是startService,一種是bindSe
細說MySQL 之MEM_ROOT這篇文章會詳細解說MySQL中使用非常廣泛的MEM_ROOT的結構體,同時省去debug部分的信息,僅分析正常情況下,mysql中使用M