アクティビティがサービスを開始して URL からテキストを取得するコードをいくつか書きました。サービスが完了したら、このパラメータをアクティビティに戻したいと思います。
私のコードは次のようになります。
public class splash extends AsyncTask<String, Void, String> {
private Context context;
private ProgressDialog Dialog;
protected config app;
public splash(Context context){
this.context=context;
Dialog = new ProgressDialog(context);
}
protected String doInBackground(String... params) {
//starts service number activite
Intent serviceIntent = new Intent();
serviceIntent.setAction("services.conServise");
context.startService(serviceIntent);
シングルトンではなく、グローバル パラメータを使用したくない