This video shows the steps to develop your Inclinometer Android app to measure tilt angle at a precision of 0.01 degrees. The App is published in Google’s play store and can be accessed at:https://play.google.com/store/apps/details?id=com.programmerworld.inclinometer_measuretilt I hope you like this video. For any questions, suggestions or appreciation please contact us at:…
Tag: sensor
How to detect the vibration or shaking of the phone in your Android App? – Android 12 | API Level 31
In this video it shows how one can detect the vibration or the shake of the phone using accelerometer sensor. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com Source code: package com.programmerworld.detectvibrationshaking;import androidx.appcompat.app.AppCompatActivity;import android.hardware.Sensor;import android.hardware.SensorEvent;import android.hardware.SensorEventListener;import android.hardware.SensorManager;import…