设置Toast出现长度

时间:2010-09-23 02:38:10

标签: android time toast

无论如何,我可以告诉Toast Notification只在指定的时间内出现。通常比普通的吐司消息更短。

6 个答案:

答案 0 :(得分:96)

我通过在比标准吐司持续时间短的特定延迟之后调用toast.cancel()找到了解决方法。

        final Toast toast = Toast.makeText(ctx, "This message will disappear in 1 second", Toast.LENGTH_SHORT);
        toast.show();

        Handler handler = new Handler();
            handler.postDelayed(new Runnable() {
               @Override
               public void run() {
                   toast.cancel(); 
               }
        }, 1000);

答案 1 :(得分:6)

没有

您可以执行以下操作:

Toast a = Toast.makeText(this, "a", Toast.LENGTH_LONG);
a.setDuration(300);

但它不会显示出来。

持续时间应为LENGTH_SHORTLENGTH_LONG

答案 2 :(得分:4)

试试这个

final Toast toast = Toast.makeText(getBaseContext(), "YOUR MESSAGE",Toast.LENGTH_SHORT);
            toast.show();
            new CountDownTimer(10000, 1000)
            {
                public void onTick(long millisUntilFinished) {toast.show();}
                public void onFinish() {toast.cancel();}
            }.start();

希望这有帮助..享受...... !!!

答案 3 :(得分:0)

//试试

    public void myToast(String message) {
    LayoutInflater myInflator = getLayoutInflater();
    View myLayout = myInflator.inflate(R.layout.custom_layout,
            (ViewGroup) findViewById(R.id.toastlayout));
    TextView myMessage = (TextView) myLayout.findViewById(R.id.label);
    myMessage.setText(message);
    Toast toast = new Toast(getApplicationContext());
    toast.setView(myLayout);
    toast.setDuration(400);
    myMessage.setGravity(Gravity.TOP | Gravity.CENTER_HORIZONTAL
            | Gravity.CENTER_VERTICAL);
    toast.show();
}

答案 4 :(得分:0)

股票Android Toast类被编码为在调用Toast时仅接受Toast.LENGTH_SHORT或Toast.LENGTH_LONG参数。这些参数的值分别为0和1,并且在调用setDuration()时不接受任何毫秒值;如果您必须显示Toast的持续时间与您考虑使用SuperToasts库中的类不同。库中的SuperToast类是Android Toast类的模拟,可以使用任何毫秒值作为持续时间参数。由于这些Toast的延迟效果,我不建议使用此类显示Toast 更长而不是最大的Android Toast长度。我建议您使用SuperActivityToast类在活动/片段中显示Toast消息,因为Toast将与您的Activity一起销毁,从而消除任何遗留消息的可能性。要使用此类,您可以创建一个新对象:

SuperActivityToast superActivityToast = new SuperActivityToast(this);  
superActivityToast.setDuration(SuperToast.DURATION_SHORT); 
// setDuration(); can also accept millisecond values
// superActivityToast.setDuration(1000);  
superActivityToast.setText("Hello world!");  
superActivityToast.show();  

或者使用静态方法:

SuperActivityToast.createDarkSuperActivityToast(this, "Hello world!", SuperToast.DURATION_SHORT).show();  

您还可以使用大量的自定义选项,查看Wiki页面!

答案 5 :(得分:-1)

以下是根据您的选择配置时间的另一种方法:

public void showMsg(String msg, final long duration) {
    final Toast toast = Toast.makeText(getApplicationContext(), msg, Toast.LENGTH_LONG);
    toast.show();
    Thread t = new Thread() {
        public void run(){
            try {
                sleep(duration);
                toast.cancel(); 
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            finally { }
        }
    };
    t.start();
}

注意:持续时间以毫秒为单位。