我把這個「Activity 1」綁定到Service上。我開始使用我可以在android中停止由bindService而不是StartService啓動的服務嗎?
Intent wrapperServiceIntent = new Intent(mContext,BleWrapper.class);
bindService(wrapperServiceIntent,mBLEWrapperServiceConnection,BIND_AUTO_CREATE);
我可以停止此服務使用
stopService(new Intent(mContext,BleWrapper.class));
insted的的
mContext.unbindService(mServiceConnection);
是出現上述情況可能與服務?