我有它自己的進程的服務返回null,我已經聲明它體現這樣的返回null,我可以忘記?getApplicationContext()在服務
public int onStartCommand(Intent intent, int flags, int startId) {
android.os.Debug.waitForDebugger();
Context mContext = getApplicationContext();
return Service.START_STICKY;
}
,我開始會這樣:
startService(new Intent(getApplicationContext(), PointService.class));
在Myactivity OnCreate
什麼想法?
我想你需要的是間通信 http://developer.android.com/guide/components/processes -and-threads.html#IPC –
服務是上下文,爲什麼你需要應用程序上下文? – FunkTheMonk
@FunkTheMonk我怎麼能得到像字符串,drawables等應用程序資源? – whizzzkey