In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article mainly shows you "how to customize Android to shorten Toast display time", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "Android how to customize how to shorten Toast display time" this article.
My main purpose is to shorten the Toast display time. If you want to extend the time, you can change it yourself.
Code
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...");}} / * * Custom centered display toast * / public void show () {mToast.show (); Log.i ("ToastUtil", "Toast show...");} / * Custom duration, centered display 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;}} / * * Hidden toast * / private void hide () {if (mToast! = null) {mToast.cancel ();} canceled = true; Log.i ("ToastUtil", "Toast that customed duration hide...") } / * Custom timer * / private class TimeCount extends CountDownTimer {public TimeCount (long millisInFuture, long countDownInterval) {super (millisInFuture, countDownInterval); / / Total duration of millisInFuture, countDownInterval interval (usually 1000ms)} @ Override public void onTick (long millisUntilFinished) {Log.e (TAG, ": + millisUntilFinished / 100 +" and then disappear ");} @ Override public void onFinish () {hide () / / call to cancel the display of Toast} when the counting is over.
Mode of use:
ToastUtil toastUtil = new ToastUtil (MainActivity.this, "saved successfully!"); / / MainActivity.this is / / Context,toastUtil.show
The above is all the contents of the article "how to customize Android to shorten Toast display time". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.