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

前端 未结 5 1525
[愿得一人]
[愿得一人] 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 03:54

    I had the same problem. When I invoked the code on UI thread the issue resolved for me

    public void showToastMessage(final String msg) {
    
        runOnUiThread(new Runnable() {
            @Override
            public void run() {
                Toast.makeText(BaseActivity.this, msg, Toast.LENGTH_LONG).show();
            }
        });
    }
    

提交回复
热议问题