Lauren Bricker
CSE 340 Winter 23
Clicks | Key presses | Touch |
Microphone | Camera | IOT devices |
Accelerometer | Rotation | Screen |
Applications | Location | Telephony |
Battery | Magnetometer | Temperature |
Bluetooth | Network Usage | Traffic |
Calls | Orientation | WiFi |
Messaging | Pressure | Processor |
Gravity | Proximity | Humidity |
Gyroscope | Light | Multi-touch |
... | ... | .... |
Listeners are used to receive sensor or location updates at different intervals
Fences (or Geofences) are a way to create an area of interest around a specific location. Listener is called any time a condition is true.
This is FYI only - you are not expected to implement the Google Awareness API.
But if you do...
But if you do...
...Setting up the callback (just like callbacks for other events)
Awareness.getSnapshotClient(this).getDetectedActivity() .addOnSuccessListener(new OnSuccessListener<DetectedActivityResponse>() { @Override public void onSuccess(DetectedActivityResponse dar) { ActivityRecognitionResult arr = dar.getActivityRecognitionResult(); } })
Notify you every time a condition is true
// Create the primitive fences.AwarenessFence walkingFence = DetectedActivityFence.during(DetectedActivityFence.WALKING);
Use the FenceClient
to register a a fence. Requires a FenceUpdateRequest
, then
use FenceClient.updateFences()
Need to call addFence()
for each fence to add.
This part you do need to know....
The LocationManager
is the "simplest" way to get the location.
Start by declaring permissions in AndroidManifest.xml
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /><uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
LocationManager
- Main class to access location services
getSystemService()
in in the onCreate()
in your Activity
GPS_PROVIDER
) or have the system pick based on criteria such as
cost or accuracy.LocationListener#onLocationChanged
- to get notifications at regular intervals
LocationManager#getLastKnownLocation()
- will get you a snapshot of the last known location
Location
- an actual location
LocationManager locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);Criteria criteria = new Criteria();criteria.setAccuracy(Criteria.ACCURACY_COARSE);criteria.setCostAllowed(false);String provider = locationManager.getBestProvider(criteria, false);Location location = null;try { location = locationManager.getLastKnownLocation(provider); MyLocationListener mylistener = new MyLocationListener(); if (location != null) { mylistener.onLocationChanged(location); } else { ... } // location updates: at least 1 meter and 500 milli seconds change locationManager.requestLocationUpdates(provider, 500, 1, mylistener);} catch (SecurityException e) { ... }
FusedLocationProviderClient
) and set up a
listener to get the location.FusedLocationProviderClient
- Location services client
LocationServices.getFusedLocationProviderClient()
in in the onCreate()
in your Activity
FusedLocationProviderClient#requestLocationUpdates
- to get notifications at
regular intervals
FusedLocationProviderClient#getLastKnownLocation()
- will get you a snapshot of the last known location
OnSuccessListener
callback set up.Location
- an actual location
First get the FusedLocationProviderClient
// Initialize Location Services Client for continuous location checkingFusedLocationProviderClient mFusedLocationClient = LocationServices.getFusedLocationProviderClient(this);mLocationRequest = LocationRequest.create();mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);mLocationRequest.setInterval(DEFAULT_UPDATE_INTERVAL * 1000);mLocationRequest.setInterval(FAST_UPDATE_INTERVAL * 1000);
This will request the location permissions, need to gracefully handle if the user says no
First create a callback to handle the updates:
private final LocationCallback mLocationCallback = new LocationCallback() { @Override public void onLocationResult(LocationResult locationResult) { List<Location> locationList = locationResult.getLocations(); if (locationList.size() > 0) { // do something with the locations... } }};
If the user approves location permissions, connect the callback.
mFusedLocationClient.requestLocationUpdates(mLocationRequest, mLocationCallback, Looper.myLooper());
Generally good principle to stop tracking if the app is paused (responding to
onPause
) or the user revokes permissions
if (mFusedLocationClient != null) { mFusedLocationClient.removeLocationUpdates(mLocationCallback);
Add some code in LocationActivity#displayLocation(Location)
that will
get additional information from the Location object and display it on the screen
Alternatively add a Map!
Mapbox is free to use if your app is under 25,000 monthly active users (no credit card needed to use the service)
To use it:
README.md
in the Sensing and Location
repository has information on how to get started.Once you've added your MapView to the screen (either in an .xml
file or programatically), you
can interact with it using their mapbox-map API
API.
Example 1 - setting the camera to a zoom level:
// Build a camera options objectCameraOptions co = new CameraOptions.Builder().zoom(mZoomLevel).build();// Set the camera to use the CameraOptions objectmMapView.getMapboxMap().setCamera(co);
Once you've added your MapView to the screen (either in an .xml
file or programatically), you
can interact with it using their mapbox-map API
API.
Example 2 - setting the camera to a specific position:
Point p = Point.fromLngLat(mCurrentLocation.getLongitude(), mCurrentLocation.getLatitude());// Build a camera options object to be at a particular PointCameraOptions co = new CameraOptions.Builder().center(p).build();// Set the camera to use the CameraOptions objectmMapView.getMapboxMap().setCamera(co);
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
s | Start & Stop the presentation timer |
t | Reset the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |