我使用RadiusNetworks Android iBeacon Library,我希望在后台进程中完成iBeacon测距,然后它会向我的应用程序广播信标信息。我尝试将iBeaconManager绑定到在单独进程上运行的服务,但它似乎不起作用,因为服务从未进入onIBeaconServiceConnect()回调。
TestService在单独的流程上:
public class TestService extends Service implements IBeaconConsumer{
public static final String START_SERVICE = "com.example.intent.action.START";
public static final String SEND_PROXID = "com.example.intent.action.PROX";
private String proxID;
private static final String TAG = TestService.class.getSimpleName();
private IBeaconManager iBeaconManager;
private Region currentRegion;
private boolean checkedRecently = false;
private Timer timer;
private TimerTask updateTask = new TimerTask() {
@Override
public void run() {
checkedRecently = false;
Log.i(TAG, "Resetting checked recently");
}
};
@Override
public int onStartCommand(Intent intent, int flags, int startId){
int ret;
ret = super.onStartCommand(intent, flags, startId);
Log.i(TAG, "Got to onStartCommand");
if(intent.getAction().equals(START_SERVICE)){
Log.i(TAG, "Service received start intent");
}
else if(intent.getAction().equals(SEND_PROXID)){
Log.i(TAG, "Service received PROXID intent");
proxID = intent.getStringExtra("prox");
System.out.println(proxID);
iBeaconManager = IBeaconManager.getInstanceForApplication(this);
iBeaconManager.bind(this);
}
return ret;
}
@Override
public IBinder onBind(Intent intent) {
Log.i(TAG, "onBIND called");
return null;
}
@Override
public void onCreate() {
super.onCreate();
Log.i(TAG, "Service creating");
timer = new Timer("TestTimer");
timer.schedule(updateTask, 1000L, 20 * 1000L);
}
@Override
public void onDestroy() {
super.onDestroy();
Log.i(TAG, "Service destroying");
timer.cancel();
timer = null;
iBeaconManager.unBind(this);
iBeaconManager = null;
}
@Override
public void onIBeaconServiceConnect() {
Log.i(TAG, "iBeacon service connect");
iBeaconManager.setRangeNotifier(new RangeNotifier() {
@Override
public void didRangeBeaconsInRegion(Collection<IBeacon> iBeacons, Region region) {
if (iBeacons.size() > 0 && !checkedRecently) {
checkedRecently = true;
Log.i(TAG, "Service found beacon, sending data");
Intent i = new Intent();
i.setAction(ServiceReceiver.DID_ENTER);
i.putExtra("maj", Integer.toString(iBeacons.iterator().next().getMajor()));
i.putExtra("min", Integer.toString(iBeacons.iterator().next().getMinor()));
sendBroadcast(i);
}
}
});
currentRegion = new Region("myRangingUniqueId", proxID, null, null);
try {
iBeaconManager.startMonitoringBeaconsInRegion(currentRegion);
} catch (RemoteException e) { }
}
}
的AndroidManifest.xml
<service
android:name=".TestService"
android:exported="false"
android:process=":remote" >
<intent-filter>
<action android:name="com.example.intent.action.PROX" />
<action android:name="com.example.intent.action.START" />
</intent-filter>
</service>
<receiver android:name="ServiceReceiver" >
<intent-filter>
<action android:name="com.example.intent.action.DIDENTER" >
</action>
</intent-filter>
</receiver>
我从我的服务器获取相关的proxID,并将其发送到服务,此时我认为我应该能够绑定到它并开始测试匹配prox的区域。但我似乎无法成功地绑定到服务。感谢您的帮助,如果我需要更新发布的代码,请告知我们。
答案 0 :(得分:0)
我想知道您的AndroidManifest.xml
是否获得了AndroidIBeaconLibrary所需的正确条目。库依赖于称为清单合并的功能,以将库的服务条目放入清单中。必须在Eclipse或Android Studio中的项目中启用此功能。检查构建目录中是否有生成的清单,并确保它有AndroidIBeaconService
的条目。
也就是说,创建自己的后台服务可能有点矫枉过正。了解Android iBeacon Library已经有一个后台AndroidIBeaconService
类(如上所述),因此您不需要自己创建服务。您需要做的就是将服务绑定到比Activity更长的生命周期(比如自定义Android Application
类),这样当Activity从中取消绑定时服务就不会停止。
有一个Pro version of the Android iBeacon Library可以为您设置所有这些功能,当您的应用在后台时节省电池会降低扫描速度,并在后台自动启动您的应用以搜索iBeacons,即使用户不会手动启动它。使用Pro版本向您展示如何执行此操作的示例代码位于“后台启动示例代码”部分here下。
完全披露:我是Radius Networks的总工程师,也是Android iBeacon Library的主要作者。