Why toast message are not show in android 4.1 operating system containing mobile

前端 未结 5 1538
[愿得一人]
[愿得一人] 2021-01-12 03:38

I cant see the toast message in android 4.1 mobile. Upto yesterday I was able to see the toast message. From today only I can not see the message. Please help me.

         


        
5条回答
  •  情书的邮戳
    2021-01-12 04:08

    Toast is working fine in all the version of Android. There can be couple of issues in your code like

    1. Your context is not wrong
    2. You are trying to display toast in the background thread instead of worker thread.

    Edit In your custom toast don't set the parent in your layout inflater for example use like below

    View layout = inflater.inflate(R.layout.toast_layout,null);
    

提交回复
热议问题