Skip to content

Instantly share code, notes, and snippets.

View NilsFo's full-sized avatar
🐱
Why can't you trust MATLAB developers? They are always plotting something!

Nils NilsFo

🐱
Why can't you trust MATLAB developers? They are always plotting something!
View GitHub Profile
@NilsFo
NilsFo / BatteryHelper.java
Created December 2, 2018 15:25
Android: A util class that can help you monitor the device's battery.
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.BatteryManager;
public class BatteryHelper {
private Intent batteryStatus;
private Context context;
@NilsFo
NilsFo / ConnectionManager.java
Created December 2, 2018 15:18
Android: Util class to help you out getting info about the speed and connection status of your device to the internet.
import android.content.Context;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.telephony.TelephonyManager;
/**
* Easy util class to help you check your device's connection to the internet state.
* <br>
* You might want to request the permission: android.permission.ACCESS_NETWORK_STATE