I am trying to use a POJO as a BeaconConsumer. Is this acceptable? The onServiceConnect is getting called. But I have to forcefully override the unbindService and the bindService.
POJO as a BeaconConsumer instead of Activity
189 Views Asked by user4145787 At
1
There are 1 best solutions below
Related Questions in IBEACON-ANDROID
- Android Altbeacon Library BeaconSimulator on release version of application
- AltBeacon's Android Beacon Library getting major, minor and UUID
- Nexus 5, BootstrapNotifier and background mode
- No monitoring and no change of scan period in a service using altbeacon android library
- onScannerClosedWithResult(no.nordicsemi.android.beacon.Beacon)' on a null object reference
- Kontakt region entered and abandoned constantly
- Altbeacon Android, I need wake up app only If device enter in region
- NullPointerException on method called in service if app is killed
- How to scan only Advertising Packet BLE
- Trouble building Samsung BLE SDK sample application
- Altbeacon library not working on Android 5.0
- AltBeacon scanning iBeacon on Android
- POJO as a BeaconConsumer instead of Activity
- how to monitor regions for beacons using only UUID (kontakt beacons) for android:
- Decreased BLE startScan detected devices on Android 5.0 Lollipop
Related Questions in ANDROID-IBEACON
- Android Altbeacon Library BeaconSimulator on release version of application
- BluetoothCrashResolver detects a crash on app launch
- How can i uniquely identify an iBeacon using android ALT Beacon library?
- iBeacon, AltBeacon, *Beacon: What interoperability is legal, and permitted on iOS and Android?
- POJO as a BeaconConsumer instead of Activity
- how to monitor regions for beacons using only UUID (kontakt beacons) for android:
- Decreased BLE startScan detected devices on Android 5.0 Lollipop
- Detect iBeacon with AltBeacon Library on Android
- List the detected beacons in listview in android
- iOS devices can't see Nexus 9 advertised AltBeacon beacon
- AltBeacon is stopping the beacon scan. But keep scanning
- Detecting of iBeacon stops in a while for OnePlus Android device
- Is there a way to increase BLE advertisement frequency in Android?
- Is it possible to tell when Alt Beacon last scanned for a beacon on Android?
- Android AltBeacon Unable To Detect PiBeacon Device
Related Questions in ALTBEACON
- Android Altbeacon Library BeaconSimulator on release version of application
- AltBeacon's Android Beacon Library getting major, minor and UUID
- Altbeacon - Neither monitoring or ranging is working with no error
- BluetoothCrashResolver detects a crash on app launch
- android altbeacon bluetooth low energy
- How can i uniquely identify an iBeacon using android ALT Beacon library?
- No monitoring and no change of scan period in a service using altbeacon android library
- AltBeacon ignores pdu type of my beacon packages
- AltBeacon Library issue
- Can I use beacons to get a customer's name on approach?
- AltBeacon -Null value in didenterRegion() and didexitRegion() method
- Prevent to call The didExitRegion() method of MonitorNotifier callback automatically
- Prevent continuous call of didEnterRegion() and didExitRegion() method of MonitorNotifier callback
- Altbeacon - Detect the beacon at the shortest distance and pause a little before continuing scanning
- Android is possible include .aar with activity extends Application?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
In general, the BeaconConsumer interface is designed to work with an Activity, Service or Application instance. There's nothing wrong using a POJO as a BeaconConsumer, but it must hold a reference to the Context. The POJO's bindService and unbindService methods must be chained to the equivalent methods on the Context like this:
Also, take care that something long-living in the Android lifecycle (an Activity, Application, etc.) holds a reference to the POJO so it doesn't get garbage collected of during the Android lifecycle.