AsyncTaskを使用していて、getApplication()を使用してクラスApplicationを操作したいと考えています。しかし、getApplication()でエラーが発生し、シンボルが見つかりません。
私のコード:
public class splash extends AsyncTask {
protected config app;
public splash(Context context) {
super();
app = ((config) getApplication());
this.context=context;
}
そして私が使いたいクラス:
public class config extends Application
{
public Boolean con=true;
public int status=-1;
public String actNum;
public void onCreate()
{
super.onCreate();
}
}