0

我正在使用 RadiusNetworks Android iBeacon 库,我想在后台进程中完成 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 匹配的区域进行测距。但我似乎无法让它成功绑定到服务。感谢您的帮助,如果我需要更新发布的代码,请告诉我。

4

1 回答 1

0

我想知道您AndroidManifest.xml是否获得了 AndroidIBeaconLibrary 所需的正确条目。库依赖于一个称为清单合并的功能来将库的服务条目放入清单中。这必须在 Eclipse 或 Android Studio 的项目中启用。检查您的构建目录以获取生成的清单,并确保它具有AndroidIBeaconService.

也就是说,创建自己的后台服务可能有点矫枉过正。了解Android iBeacon 库已经有一个后台AndroidIBeaconService类(如上所述),所以你真的不需要自己制作服务。您需要做的就是将服务绑定到生命周期比 Activity 更长的东西(如自定义 AndroidApplication类),这样当 Activity 解除绑定时服务不会停止。

有一个专业版的 Android iBeacon 库可以为您设置所有这些,当您的应用程序处于后台以节省电池时减慢扫描速度,并自动在后台启动您的应用程序以搜索 iBeacon,即使用户不会手动启动它。向您展示如何使用 Pro 版本执行此操作的示例代码位于此处的“后台启动示例代码”部分。

全面披露:我是 Radius Networks 的首席工程师,也是 Android iBeacon 库的主要作者。

于 2014-06-11T20:30:07.697 回答