您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關Android 中如何自定義縮短Toast顯示時間,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
import android.content.Context; import android.os.CountDownTimer; import android.util.Log; import android.widget.Toast; public class ToastUtil { private String TAG = "ToastUtil"; private Toast mToast; private TimeCount timeCount; private String message; private boolean canceled = true; public ToastUtil(Context context, String msg) { message = msg; Log.i("ToastUtil", "Toast start..."); if (mToast == null) { mToast =Toast.makeText(context,message,Toast.LENGTH_SHORT); Log.i("ToastUtil", "Toast create..."); } } /** * 自定義居中顯示toast */ public void show() { mToast.show(); Log.i("ToastUtil", "Toast show..."); } /** * 自定義時長、居中顯示toast * @param duration */ public void show(int duration) { timeCount = new TimeCount(duration, 100); Log.i("ToastUtil", "Toast show..."); if (canceled) { timeCount.start(); show(); canceled = false; } } /** * 隱藏toast */ private void hide() { if (mToast != null) { mToast.cancel(); } canceled = true; Log.i("ToastUtil", "Toast that customed duration hide..."); } /** * 自定義計時器 */ private class TimeCount extends CountDownTimer { public TimeCount(long millisInFuture, long countDownInterval) { super(millisInFuture, countDownInterval); //millisInFuture總計時長,countDownInterval時間間隔(一般為1000ms) } @Override public void onTick(long millisUntilFinished) { Log.e(TAG, ": " + millisUntilFinished / 100 + "后消失" ); } @Override public void onFinish() { hide();//記數結束后調用取消Toast的顯示 } } }
使用方式:
ToastUtil toastUtil = new ToastUtil(MainActivity.this,"保存成功!");//MainActivity.this為 //Context, toastUtil.show(500);
看完上述內容,你們對Android 中如何自定義縮短Toast顯示時間有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。