How do you display a Toast from a background thread on Android?

后端 未结 11 1869
难免孤独
难免孤独 2020-11-22 05:03

How can I display Toast messages from a thread?

11条回答
  •  一向
    一向 (楼主)
    2020-11-22 05:40

    I like to have a method in my activity called showToast which I can call from anywhere...

    public void showToast(final String toast)
    {
        runOnUiThread(() -> Toast.makeText(MyActivity.this, toast, Toast.LENGTH_SHORT).show());
    }
    

    I then most frequently call it from within MyActivity on any thread like this...

    showToast(getString(R.string.MyMessage));
    

提交回复
热议问题