Android library listening network events.
min sdk version = 9
JavaDoc is available at: http://pwittchen.github.io/NetworkEvents
Note: There's another, younger project, which allows to accomplish the same tasks with RxJava and Reactive Programming apporach. You can check it out at: https://github.com/pwittchen/ReactiveNetwork.
Library is able to detect ConnectivityStatus
when it changes.
public enum ConnectivityStatus {
UNKNOWN("unknown"),
WIFI_CONNECTED("connected to WiFi"),
WIFI_CONNECTED_HAS_INTERNET("connected to WiFi (Internet available)"),
WIFI_CONNECTED_HAS_NO_INTERNET("connected to WiFi (Internet not available)"),
MOBILE_CONNECTED("connected to mobile network"),
OFFLINE("offline");
...
}
In addition, it is able to detect situation when strength of the Wifi signal was changed with WifiSignalStrengthChanged
event, when we enable WiFi scanning.
Library is able to detect MobileNetworkType
when ConnectivityStatus
changes to MOBILE_CONNECTED
.
public enum MobileNetworkType {
UNKNOWN("unknown"),
LTE("LTE"),
HSPAP("HSPAP"),
EDGE("EDGE"),
GPRS("GPRS");
...
}
Appropriate permissions are already set in AndroidManifest.xml
file for the library inside the <manifest>
tag.
They don't need to be set inside the specific application, which uses library.
In your activity add BusWrapper
field, which wraps your Event Bus. You can use Otto as in this sample and then create NetworkEvents
field.
private BusWrapper busWrapper;
private NetworkEvents networkEvents;
Create implementation of BusWrapper
. You can use any event bus here. E.g. GreenRobot's Event Bus. In this example, we are wrapping Otto Event bus.
private BusWrapper getOttoBusWrapper(final Bus bus) {
return new BusWrapper() {
@Override
public void register(Object object) {
bus.register(object);
}
@Override
public void unregister(Object object) {
bus.unregister(object);
}
@Override
public void post(Object event) {
bus.post(event);
}
};
}
Initialize objects in onCreate(Bundle savedInstanceState)
method.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
busWrapper = getOttoBusWrapper(new Bus());
networkEvents = new NetworkEvents(this, busWrapper);
}
By default library logs messages about changed connectivity or WiFi signal strength to LogCat. We can create custom logger implementation in the following way:
networkEvents = new NetworkEvents(this, busWrapper, new Logger() {
@Override
public void log(String message) {
// log your message here
}
});
If we don't want to log anything, we can simply create empty implementation of the Logger
interface, when log(message)
method doesn't do anything.
WiFi Access Points scanning is disabled by default. If Wifi Access Points Scan is not enabled, WifiSignalStrengthChanged
event will never occur. You can enable it as follows:
networkEvents = new NetworkEvents(this, busWrapper)
.enableWifiScan();
Internet connection check is disabled by default. If Internet check is disabled, status WIFI_CONNECTED_HAS_INTERNET
and WIFI_CONNECTED_HAS_NO_INTERNET
won't be set. You can enable it as follows:
networkEvents = new NetworkEvents(this, bus)
.enableInternetCheck();
We have to register and unregister objects in Activity Lifecycle.
In case of different Event Buses, we have to do it differently.
Register BusWrapper
and NetworkEvents
in onResume()
method and unregister them in onPause()
method.
@Override
protected void onResume() {
super.onResume();
busWrapper.register(this);
networkEvents.register();
}
@Override
protected void onPause() {
super.onPause();
busWrapper.unregister(this);
networkEvents.unregister();
}
Register BusWrapper
and NetworkEvents
in onStart()
method and unregister them in onStop()
method.
@Override
protected void onStart() {
super.onStart();
busWrapper.register(this);
networkEvents.register();
}
@Override
protected void onStop() {
busWrapper.unregister(this);
networkEvents.unregister();
super.onStop();
}
For Otto Event Bus @Subscribe
annotations are required, but we don't have to use them in case of using library with GreenRobot's Event Bus.
@Subscribe
public void onEvent(ConnectivityChanged event) {
// get connectivity status from event.getConnectivityStatus()
// or mobile network type via event.getMobileNetworkType()
// and do whatever you want
}
@Subscribe
public void onEvent(WifiSignalStrengthChanged event) {
// do whatever you want - e.g. read fresh list of access points
// via event.getWifiScanResults() method
}
- Look at
MainActivity
in application located inexample
directory to see how this library works with Otto Event Bus. - If you want to use this library with Dagger, check
example-dagger
directory. - Example presenting how to use this library with GreenRobot's Event Bus is presented in
example-greenrobot-bus
directory
You can depend on the library through Maven:
<dependency>
<groupId>com.github.pwittchen</groupId>
<artifactId>networkevents</artifactId>
<version>2.0.1</version>
</dependency>
or through Gradle:
dependencies {
compile 'com.github.pwittchen:networkevents:2.0.1'
}
Remember to add dependency to the Event Bus, which you are using.
In case of Otto, add the following dependency through Maven:
<dependency>
<groupId>com.squareup</groupId>
<artifactId>otto</artifactId>
<version>1.3.8</version>
</dependency>
or through Gradle:
dependencies {
compile 'com.squareup:otto:1.3.8'
}
You can also use GreenRobot's Event Bus or any Event Bus you want.
Tests are available in network-events-library/src/androidTest/java/
directory and can be executed on emulator or Android device from Android Studio or CLI with the following command:
./gradlew connectedCheck
Test coverage report can be generated with the following command:
./gradlew createDebugCoverageReport
In order to generate report, emulator or Android device needs to be connected to the computer.
Report will be generated in the network-events-library/build/outputs/reports/coverage/debug/
directory.
Copyright 2015 Piotr Wittchen
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.