0

在我的应用程序中,我想取消旧的吐司,并显示新的吐司。但效果不佳。

                             Handler postHandler = new Handler();     
                        postHandler.post(new Runnable() {  
                            @Override  
                            public void run() {  

                                    if (toast != null) {  
                                        toast.cancel();
                                toast.maketext(this,"new toast",Toast.LENGTH_LONG);



                                    } 
                                    toast.show();  

                            }  
                        });  


                return false;
            }
        });

但没有显示。

logcat 显示:

E/AndroidRuntime( 6706): FATAL EXCEPTION: main
E/AndroidRuntime( 6706): java.lang.NullPointerException
E/AndroidRuntime( 6706):        at android.view.View.onAttachedToWindow(View.java:9533)
E/AndroidRuntime( 6706):        at android.view.View.dispatchAttachedToWindow(View.java:9786)
E/AndroidRuntime( 6706):        at android.view.ViewGroup.dispatchAttachedToWindow(ViewGroup.java:2198)
E/AndroidRuntime( 6706):        at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:957)
E/AndroidRuntime( 6706):        at android.view.ViewRootImpl.handleMessage(ViewRootImpl.java:2453)
E/AndroidRuntime( 6706):        at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 6706):        at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 6706):        at android.app.ActivityThread.main(ActivityThread.java:4424)
E/AndroidRuntime( 6706):        at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 6706):        at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime( 6706):        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
E/AndroidRuntime( 6706):        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
E/AndroidRuntime( 6706):        at dalvik.system.NativeStart.main(Native Method)
W/ActivityManager(  183):   Force finishing activity com.rk.youming/.Testsurfacevie
4

1 回答 1

0

您的代码没有真正的意义。您引用新的 toast 并在它显示之前尝试cancel()它。如果你愿意,cancel()你必须在引用旧 toast 的对象上调用它,而不是新的。如果 toast 是null你不会取消()它(因为if),但仍然尝试以show()NPE 结束。

于 2012-09-07T02:11:28.493 回答