91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

定制Toast的顯示時間

發布時間:2020-07-31 21:22:11 來源:網絡 閱讀:387 作者:huangmeicai 欄目:移動開發

背景:

    缺省狀態下,Toast顯示時間大約在1~2秒時間,有時需要讓彈出窗顯示更長的時間。

案例:

    可通過調用CountDownTimeer例來達到此目標。

public class ToastActivity extends Activity
{
    AlertDialog dialog;
   
     static CountDownTimer timer =null;
     Toast toast;
     @Override
        public void onCreate(Bundle savedInstanceState)
        {
                super.onCreate(savedInstanceState);
                

                // creating toast and setting properties

                toast = new Toast(this);
                TextView textView=new TextView(this);
                textView.setTextColor(Color.BLUE);
                textView.setBackgroundColor(Color.TRANSPARENT);
                textView.setTextSize(20);
                textView.setText("This Toast will Display for 20 Seconds in Center of The Screen");
                toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);


                toast.setView(textView);
               

               //    Toast Display tTime Settings

               
                // Create the CountDownTimer object and implement the 2 methods
                // show the toast in onTick() method  and cancel the toast in onFinish() method
                // it will show the toast for 20 seconds (20000 milliseconds 1st argument) with interval of 1 second(2nd argument)

 
                timer =new CountDownTimer(20000, 1000)
                {
                    public void onTick(long millisUntilFinished)
                    {
                        toast.show();
                    }
                    public void onFinish()
                    {
                        toast.cancel();
                    }

                }.start();
               
          }
}

通過調用timer.cancel()可以取消Toast的顯示。

結果:

    定制Toast的顯示時間

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

准格尔旗| 界首市| 黔东| 景谷| 陵川县| 民县| 淅川县| 弥勒县| 达孜县| 浮山县| 南开区| 理塘县| 漳浦县| 白朗县| 龙岩市| 安龙县| 南涧| 新绛县| 广德县| 碌曲县| 怀来县| 泰顺县| 灵川县| 马尔康县| 阿坝| 措勤县| 绵竹市| 甘洛县| 文登市| 四子王旗| 景谷| 广安市| 宜黄县| 石台县| 玉龙| 大关县| 威海市| 北宁市| 尼玛县| 梅州市| 彰化市|