使用 altbeacon android 库的服务中没有监控也没有扫描周期的变化
No monitoring and no change of scan period in a service using altbeacon android library
我是 android 初学者,正在 Android 上测试一些 Estimote-Beacons。我的项目使用 Estimote 库,但现在我想尝试更开放的 altbeacon-library,但我遇到了几个问题。
我的应用程序的功能应该是这样的:
当应用程序启动时,BeaconApplication 应该启动 BeaconsMonitoringService。应监测两个区域。如果进入一个区域,服务应该使用广播管理器发送一个意图。根据意图的信息,复选框应该在 main-activity 中 checked/unchecked。
当应用程序被终止或蓝牙状态发生变化时,该服务也会启动。
问题是:
- 未检测到区域
- 未设置扫描周期
显示所有调试日志,但来自 onBeaconServiceConnect 的 "Entered" 和 "Left" 除外。
任何帮助,将不胜感激。希望它只是一个 dumb/newbie 错误并且它可以正常工作。 :)
这是我的 BeaconApplication 代码:
package de.mcd.presencealtbeacon;
import android.app.Application;
import android.content.Intent;
import org.altbeacon.beacon.BeaconManager;
public class BeaconApplication extends Application {
private BeaconManager beaconManager = null;
@Override
public void onCreate() {
super.onCreate();
beaconManager = BeaconManager.getInstanceForApplication(this);
startService(new Intent(getApplicationContext(), BeaconsMonitoringService.class));
}
public BeaconManager getBeaconManager() {
if (beaconManager == null) {
beaconManager = BeaconManager.getInstanceForApplication(this);
}
return beaconManager;
}
}
这里是 BeaconsMonitoringService 的代码:
package de.mcd.presencealtbeacon;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.os.IBinder;
import android.os.RemoteException;
import android.support.v4.content.LocalBroadcastManager;
import android.util.Log;
import org.altbeacon.beacon.BeaconConsumer;
import org.altbeacon.beacon.BeaconManager;
import org.altbeacon.beacon.Identifier;
import org.altbeacon.beacon.MonitorNotifier;
import org.altbeacon.beacon.Region;
import org.altbeacon.beacon.BeaconParser;
public class BeaconsMonitoringService extends Service implements BeaconConsumer {
private static final String UUID = "1234567-1234-1234-1234-123456789012";
private static final Region Room = new Region("mcd", Identifier.parse(UUID), Identifier.fromInt(1), null);
private static final Region Kitchen = new Region("mcd", Identifier.parse(UUID), Identifier.fromInt(2), null);
private static final String TAG = "BEACON";
private BeaconManager beaconManager;
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
Log.d(TAG, "Beacons monitoring service started");
}
@Override
public void onDestroy() {
Log.d(TAG, "Beacons monitoring service destroyed");
}
public void onBeaconServiceConnect(){
beaconManager.setMonitorNotifier(new MonitorNotifier() {
@Override
public void didEnterRegion(Region region) {
Log.d(TAG, "Entered");
if (region.getId2() == Identifier.fromInt(1)) {
postNotification("Room", "Entered");
intent("1-1");
} else {
postNotification("Kitchen", "Entered");
intent("2-1");
}
}
@Override
public void didExitRegion(Region region) {
Log.d(TAG, "Left");
if (region.getId2() == Identifier.fromInt(1)) {
postNotification("Room", "Left");
intent("1-2");
} else {
postNotification("Kitchen", "Left");
intent("2-2");
}
}
@Override
public void didDetermineStateForRegion(int state, Region region) {
Log.d(TAG, "Don't know what it's useful for" + state);
}
});
try {
Log.d(TAG, "Service ready");
beaconManager.startMonitoringBeaconsInRegion(Room);
beaconManager.startMonitoringBeaconsInRegion(Kitchen);
} catch (RemoteException e) {
Log.e(TAG, "Cannot start ranging", e);
}
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.d(TAG, "onStart Start");
BeaconApplication app = (BeaconApplication)getApplication();
beaconManager = app.getBeaconManager();
beaconManager.setBackgroundScanPeriod(1100l);
beaconManager.setBackgroundBetweenScanPeriod(10000l);
beaconManager.getBeaconParsers ().add ( new BeaconParser ().setBeaconLayout (
"m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24" ) );
beaconManager.bind(this);
Log.d(TAG, "onStart End");
Notification noti = new Notification.Builder(this)
.setContentTitle("Started")
.setContentText("Here we go")
.setSmallIcon(R.mipmap.ic_launcher)
.build();
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.cancel(2);
mNotificationManager.notify(1, noti);
return START_STICKY;
}
private void postNotification(String room, String action) {
Intent notificationIntent = new Intent(BeaconsMonitoringService.this, MyActivity.class);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
| Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent intent = PendingIntent.getActivity(BeaconsMonitoringService.this, 0,
notificationIntent, 0);
Notification noti = new Notification.Builder(BeaconsMonitoringService.this)
.setContentTitle(room)
.setContentText(action)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentIntent(intent)
.build();
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.cancel(2);
mNotificationManager.notify(1, noti);
}
private void intent (String code){
Intent intent = new Intent("statechanged");
intent.putExtra("info", code);
LocalBroadcastManager.getInstance(BeaconsMonitoringService.this).sendBroadcast(intent);
}
}
一个问题是 Region
构造函数的第一个参数是一个唯一的字符串,用于标识库的区域。每个区域都必须有一个唯一的字符串,否则在您开始测距或监测时,它会替换另一个具有相同标识符的区域。下面的代码对两个区域使用相同的标识符:
private static final Region Room = new Region("mcd", Identifier.parse(UUID), Identifier.fromInt(1), null);
private static final Region Kitchen = new Region("mcd", Identifier.parse(UUID), Identifier.fromInt(2), null);
这会导致第二个监视区域替换下面代码中的第一个:
beaconManager.startMonitoringBeaconsInRegion(Room);
beaconManager.startMonitoringBeaconsInRegion(Kitchen);
要解决此问题,请将区域设置更改为:
private static final Region Room = new Region("mcd1", Identifier.parse(UUID), Identifier.fromInt(1), null);
private static final Region Kitchen = new Region("mcd2", Identifier.parse(UUID), Identifier.fromInt(2), null);
在更基本的层面上,构建一个在后台自动启动的后台服务对于自称是初学者的人来说是一项相当高级的任务。可能有很多其他看代码不明显的问题。 Android Beacon 库已设计为在后台自动启动并扫描 beacon,扫描间隔随着应用从前台切换到后台而适当变化。
您可以在参考应用 here.
的应用程序 class 中看到一个简单的示例
我建议您不要使用您的 BeaconMoinitoringService
,而是将参考应用程序 class 中的代码复制到您的 BeaconApplication
class 中。然后,您可以将代码从 BeaconMonitoringService
class.
移动到 BeaconApplication
class 的 didEnterRegion
和 didExitRegion
方法中
如果您更喜欢使用定制服务的方法,我相信这是可能的,但这可能有点艰难。
我是 android 初学者,正在 Android 上测试一些 Estimote-Beacons。我的项目使用 Estimote 库,但现在我想尝试更开放的 altbeacon-library,但我遇到了几个问题。
我的应用程序的功能应该是这样的: 当应用程序启动时,BeaconApplication 应该启动 BeaconsMonitoringService。应监测两个区域。如果进入一个区域,服务应该使用广播管理器发送一个意图。根据意图的信息,复选框应该在 main-activity 中 checked/unchecked。 当应用程序被终止或蓝牙状态发生变化时,该服务也会启动。
问题是:
- 未检测到区域
- 未设置扫描周期
显示所有调试日志,但来自 onBeaconServiceConnect 的 "Entered" 和 "Left" 除外。 任何帮助,将不胜感激。希望它只是一个 dumb/newbie 错误并且它可以正常工作。 :)
这是我的 BeaconApplication 代码:
package de.mcd.presencealtbeacon;
import android.app.Application;
import android.content.Intent;
import org.altbeacon.beacon.BeaconManager;
public class BeaconApplication extends Application {
private BeaconManager beaconManager = null;
@Override
public void onCreate() {
super.onCreate();
beaconManager = BeaconManager.getInstanceForApplication(this);
startService(new Intent(getApplicationContext(), BeaconsMonitoringService.class));
}
public BeaconManager getBeaconManager() {
if (beaconManager == null) {
beaconManager = BeaconManager.getInstanceForApplication(this);
}
return beaconManager;
}
}
这里是 BeaconsMonitoringService 的代码:
package de.mcd.presencealtbeacon;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.os.IBinder;
import android.os.RemoteException;
import android.support.v4.content.LocalBroadcastManager;
import android.util.Log;
import org.altbeacon.beacon.BeaconConsumer;
import org.altbeacon.beacon.BeaconManager;
import org.altbeacon.beacon.Identifier;
import org.altbeacon.beacon.MonitorNotifier;
import org.altbeacon.beacon.Region;
import org.altbeacon.beacon.BeaconParser;
public class BeaconsMonitoringService extends Service implements BeaconConsumer {
private static final String UUID = "1234567-1234-1234-1234-123456789012";
private static final Region Room = new Region("mcd", Identifier.parse(UUID), Identifier.fromInt(1), null);
private static final Region Kitchen = new Region("mcd", Identifier.parse(UUID), Identifier.fromInt(2), null);
private static final String TAG = "BEACON";
private BeaconManager beaconManager;
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
Log.d(TAG, "Beacons monitoring service started");
}
@Override
public void onDestroy() {
Log.d(TAG, "Beacons monitoring service destroyed");
}
public void onBeaconServiceConnect(){
beaconManager.setMonitorNotifier(new MonitorNotifier() {
@Override
public void didEnterRegion(Region region) {
Log.d(TAG, "Entered");
if (region.getId2() == Identifier.fromInt(1)) {
postNotification("Room", "Entered");
intent("1-1");
} else {
postNotification("Kitchen", "Entered");
intent("2-1");
}
}
@Override
public void didExitRegion(Region region) {
Log.d(TAG, "Left");
if (region.getId2() == Identifier.fromInt(1)) {
postNotification("Room", "Left");
intent("1-2");
} else {
postNotification("Kitchen", "Left");
intent("2-2");
}
}
@Override
public void didDetermineStateForRegion(int state, Region region) {
Log.d(TAG, "Don't know what it's useful for" + state);
}
});
try {
Log.d(TAG, "Service ready");
beaconManager.startMonitoringBeaconsInRegion(Room);
beaconManager.startMonitoringBeaconsInRegion(Kitchen);
} catch (RemoteException e) {
Log.e(TAG, "Cannot start ranging", e);
}
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.d(TAG, "onStart Start");
BeaconApplication app = (BeaconApplication)getApplication();
beaconManager = app.getBeaconManager();
beaconManager.setBackgroundScanPeriod(1100l);
beaconManager.setBackgroundBetweenScanPeriod(10000l);
beaconManager.getBeaconParsers ().add ( new BeaconParser ().setBeaconLayout (
"m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24" ) );
beaconManager.bind(this);
Log.d(TAG, "onStart End");
Notification noti = new Notification.Builder(this)
.setContentTitle("Started")
.setContentText("Here we go")
.setSmallIcon(R.mipmap.ic_launcher)
.build();
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.cancel(2);
mNotificationManager.notify(1, noti);
return START_STICKY;
}
private void postNotification(String room, String action) {
Intent notificationIntent = new Intent(BeaconsMonitoringService.this, MyActivity.class);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
| Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent intent = PendingIntent.getActivity(BeaconsMonitoringService.this, 0,
notificationIntent, 0);
Notification noti = new Notification.Builder(BeaconsMonitoringService.this)
.setContentTitle(room)
.setContentText(action)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentIntent(intent)
.build();
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.cancel(2);
mNotificationManager.notify(1, noti);
}
private void intent (String code){
Intent intent = new Intent("statechanged");
intent.putExtra("info", code);
LocalBroadcastManager.getInstance(BeaconsMonitoringService.this).sendBroadcast(intent);
}
}
一个问题是 Region
构造函数的第一个参数是一个唯一的字符串,用于标识库的区域。每个区域都必须有一个唯一的字符串,否则在您开始测距或监测时,它会替换另一个具有相同标识符的区域。下面的代码对两个区域使用相同的标识符:
private static final Region Room = new Region("mcd", Identifier.parse(UUID), Identifier.fromInt(1), null);
private static final Region Kitchen = new Region("mcd", Identifier.parse(UUID), Identifier.fromInt(2), null);
这会导致第二个监视区域替换下面代码中的第一个:
beaconManager.startMonitoringBeaconsInRegion(Room);
beaconManager.startMonitoringBeaconsInRegion(Kitchen);
要解决此问题,请将区域设置更改为:
private static final Region Room = new Region("mcd1", Identifier.parse(UUID), Identifier.fromInt(1), null);
private static final Region Kitchen = new Region("mcd2", Identifier.parse(UUID), Identifier.fromInt(2), null);
在更基本的层面上,构建一个在后台自动启动的后台服务对于自称是初学者的人来说是一项相当高级的任务。可能有很多其他看代码不明显的问题。 Android Beacon 库已设计为在后台自动启动并扫描 beacon,扫描间隔随着应用从前台切换到后台而适当变化。
您可以在参考应用 here.
的应用程序 class 中看到一个简单的示例我建议您不要使用您的 BeaconMoinitoringService
,而是将参考应用程序 class 中的代码复制到您的 BeaconApplication
class 中。然后,您可以将代码从 BeaconMonitoringService
class.
BeaconApplication
class 的 didEnterRegion
和 didExitRegion
方法中
如果您更喜欢使用定制服务的方法,我相信这是可能的,但这可能有点艰难。