如何在ApplicationSyncAdapter Android中举杯祝酒?

时间:2016-12-06 12:14:51

标签: android

我尝试过使用runOnUIthread概念在活动,片段和服务中做吐司。

如何在Android中的ApplicationSyncAdapter中进行吐司?

2 个答案:

答案 0 :(得分:1)

public void onClick(View v) {
    String text = (String)s.getSelectedItem();
    Toast toast = Toast.makeText(getApplicationContext(),"Toast" ,Toast.LENGTH_LONG);
    toast.show();
        }
// this by Java

https://i.stack.imgur.com/kWI07.png

答案 1 :(得分:0)

您可以在主线程上运行代码,如下所示:

new Handler(Looper.getMainLooper()).post(/*Your runnable*/)