我试图使用AltBeacon的Android-Beacon-Library在后台检测iBeacons。我在我的项目中包含了以下代码片段。到目前为止,我没有在后台检测到ibeacons...任何帮助都很感激
我在用BeaconManager
setBeaconLayout("m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24"));
然而,我没有得到错误和信标检测。当在三星Galaxy 4设备上的debug中运行应用程序时,应用程序会启动,但不会检测到活动信标。我的信标是Rad信标,配置为iBeacons。Rad Beacon应用程序检测它们,我的其他AltBeacon库应用程序也检测它们,该应用程序运行在前台并检测我的iBeacons。这些应用程序在三星Galaxy4上运行。
package com.myApp.BTleDemo;
import android.app.Application;
import android.content.Intent;
import android.util.Log;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Locale;
import org.altbeacon.beacon.startup.BootstrapNotifier;
import org.altbeacon.beacon.startup.RegionBootstrap;
import org.altbeacon.beacon.Region;
import org.altbeacon.beacon.BeaconConsumer;
import org.altbeacon.beacon.BeaconManager;
import org.altbeacon.beacon.BeaconParser;
import org.altbeacon.beacon.MonitorNotifier;
import org.altbeacon.beacon.RangeNotifier;
import org.altbeacon.beacon.Region;
import org.altbeacon.beacon.Identifier;
public class BackgroundMode extends Application implements BootstrapNotifier{
private static final String TAG = ".BackgroundMode";
private RegionBootstrap regionBootstrap;
private BeaconManager beaconManager;
SharedPreferences prefs;
List<Region> regions;
public void onCreate() {
super.onCreate();
Log.d(TAG, "App started up");
beaconManager = BeaconManager.getInstanceForApplication(this);
// Add AltBeacons Parser for iBeacon
beaconManager.getBeaconParsers().add(new BeaconParser().setBeaconLayout("m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24"));
// wake up the app when any beacon is seen (you can specify specific id filers in the parameters below)
Region region = new Region("com.myApp.BTleDemo.boostrapRegion", Identifier.parse(Constants.BT_UUID),
Identifier.fromInt(Constants.BT_MAJOR), Identifier.fromInt(Constants.BT_MINOR));
regionBootstrap = new RegionBootstrap(this, region);
}
@Override
public void didDetermineStateForRegion(int arg0, Region arg1) {
// Don't care
}
@Override
public void didEnterRegion(Region arg0) {
Log.d(TAG, "Got a didEnterRegion call");
// This call to disable will make it so the activity below only gets launched the first time a beacon is seen (until the next time the app is launched)
// if you want the Activity to launch every single time beacons come into view, remove this call.
regionBootstrap.disable();
Intent intent = new Intent(this, MainActivity.class);
// IMPORTANT: in the AndroidManifest.xml definition of this activity, you must set android:launchMode="singleInstance" or you will get two instances
// created when a user launches the activity manually and it gets launched from here.
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
this.startActivity(intent);
}
@Override
public void didExitRegion(Region arg0) {
// Don't care
}
/*
@Override
public void onBeaconServiceConnect() {
beaconManager.setRangeNotifier(new RangeNotifier() {
@Override
public void didRangeBeaconsInRegion(Collection<Beacon> beacons, Region region) {
if (beacons.size() > 0) {
Log.i(TAG, "The first beacon I see is about "+beacons.iterator().next().getDistance()+" meters away.");
}
}
});
try {
beaconManager.startRangingBeaconsInRegion(new Region("myRangingUniqueId", null, null, null));
} catch (RemoteException e) { }
}
}
*/
}
我没有得到任何ibeacon检测。没有发布预期的LogCat列表。我是不是漏了什么步?
编辑Project.Properties文件并添加一行:
manifestmerger.enabled=true
请参阅此处的完整说明:
http://altbeacon.github.io/android-beacon-library/configure.html
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<!-- nest the entries below underneath your application tag -->
<service android:enabled="true" android:exported="true" android:isolatedProcess="false" android:label="beacon" android:name="org.altbeacon.beacon.service.BeaconService">
</service>
<service android:enabled="true" android:name="org.altbeacon.beacon.BeaconIntentProcessor">
</service>
<receiver android:name="org.altbeacon.beacon.startup.StartupBroadcastReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
<action android:name="android.intent.action.ACTION_POWER_CONNECTED"/>
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED"/>
</intent-filter>
</receiver>
我是不是遗漏了什么,或者有什么特别的原因不起作用? 谢了!
我已经下载了OpenNLP工具,在为我的bash文件添加了正确的路径后,我能够让命令行工具运行,但我不知道如何让api文件与我的IDE(Netbeans)一起工作 对于命令行工具,我将指向/bin目录的路径。/lib目录中有四个jar文件:jwnl-1.3.3。jar,opennlp-maxent-3.0.3。jar,opennlp-tools-1.5.3。jar,opennlp-uima-1.5
我在学习灯塔。 当我开发信标信号时,我注意到有些信标信号是iBeacon,但有些信号不是。 我猜,这种情况发生在(BLE类型应该是02) 如果我猜不是,iBeacon有什么结构吗? 我的意思是,有没有把iBeacon和beacon分类的资料?(在UUID、大调、小调领域)
目前,我正在做一个项目,使用android手机来检测iBeacons,并从iBeacon读/写uuid、主要次要信息等 我是相当新的Android开发和iBeacons,请让我知道如果你需要额外的要求。谢谢你的帮助。
我对java和一般的编码都很陌生,我正试图弄明白如何让这个游戏在学校的一个项目中发挥作用。它的意思是让你输入一个月,然后它会要求你选择一天,但是当我输入一个月时,它总是说这是一个无效的输入,这是我希望它做的,当它不是一个有效的月份。我做错了什么?
我正在对信标进行测距,我的目标是处理didRangeBeaconsInregion中的信标集合,以便获得集合中最近的一个,并在屏幕上显示与信标itselt相关的字符串(Beacon1=Red,Beacon2=Blue...)。我目前的ibeacons广告速率是1Hz(我还不能配置它们来提高它)。 据我所知,didRangeBeaconsinRegion有一个beacons集合,它是上一秒钟看到的b