2018年8月13日 星期一
自訂義的Toash
public static void showToast(final Activity activity, final String word, final long time){
activity.runOnUiThread(new Runnable() {
public void run() {
final Toast toast = Toast.makeText(activity, word, Toast.LENGTH_LONG);
toast.show();
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
public void run() {
toast.cancel();
}
}, time);
}
});
}
訂閱:
張貼留言 (Atom)
-
// ---先檢查權限-6.0 -------------------------- int permissionCheck = ContextCompat.checkSelfPermission(this, Manifest.permissio...
沒有留言:
張貼留言