私が電話したら
Intent intent = new Intent(ReadingActivity.this, AdService.class);
startService(intent);
onCreate
クラスのメソッド内から、クラスのメソッド内からMyActivity
アクセスするにはどうすればよいですかMyActivity.this
onHandleIntent()
IntentService
@Override
protected void onHandleIntent(Intent arg0) {
// TODO Auto-generated method stub
((BookLib) getApplication()).createAd(I need to pass the calling activities context here);
}