My Asyn Classes 是一个单独的类文件。
public class AdamTask extends AsyncTask<String, Void, String>{
public void showToast(final String toast)
{
runOnUiThread(new Runnable() {
public void run()
{
Toast.makeText(context, toast, Toast.LENGTH_SHORT).show();
}
});
}
}
我将如何在我的 AsyncTask 类中执行此方法?我收到错误方法runOnUiThread(new Runnable(){}) is undefined for the type AdamTask
新的 AdamTask(Eve.this, How to pass the eve activity here
).execute();