A small utility to display the list of Sensors present in an Android phone. For those who are not interested in the code, the installable apk file is provided as a downloadable link at the end of this article. The Activity class package com.example.listsensors; import java.util.List; import android.os.Bundle; import android.hardware.Sensor; import android.hardware.SensorManager; import android.app.Activity; import android.content.Context; import android.view.Menu; import android.widget.TextView; …
↧