Android - เซ็นเซอร์
อุปกรณ์ Android ส่วนใหญ่มีเซ็นเซอร์ในตัวซึ่งจะวัดการเคลื่อนไหวการวางแนวและสภาพแวดล้อมต่างๆ แพลตฟอร์ม Android รองรับเซ็นเซอร์สามประเภทกว้าง ๆ
- เซนเซอร์ตรวจจับความเคลื่อนไหว
- เซ็นเซอร์สิ่งแวดล้อม
- เซ็นเซอร์ตำแหน่ง
เซ็นเซอร์บางตัวใช้ฮาร์ดแวร์และเซ็นเซอร์บางตัวเป็นเซ็นเซอร์ที่ใช้ซอฟต์แวร์ ไม่ว่าเซ็นเซอร์จะเป็นอย่างไร android ก็ช่วยให้เราได้รับข้อมูลดิบจากเซ็นเซอร์เหล่านี้และใช้ในแอปพลิเคชันของเรา สำหรับ Android นี้มีคลาสบางอย่างให้เรา
Android มีคลาส SensorManager และ Sensor เพื่อใช้เซ็นเซอร์ในแอปพลิเคชันของเรา ในการใช้เซ็นเซอร์สิ่งแรกที่คุณต้องทำคือสร้างอินสแตนซ์วัตถุของคลาส SensorManager สามารถทำได้ดังนี้
SensorManager sMgr;
sMgr = (SensorManager)this.getSystemService(SENSOR_SERVICE);
สิ่งต่อไปที่คุณต้องทำคือสร้างอินสแตนซ์อ็อบเจ็กต์ของคลาส Sensor โดยเรียกเมธอด getDefaultSensor () ของคลาส SensorManager ไวยากรณ์ได้รับด้านล่าง -
Sensor light;
light = sMgr.getDefaultSensor(Sensor.TYPE_LIGHT);
เมื่อมีการประกาศเซ็นเซอร์คุณจะต้องลงทะเบียนผู้ฟังและแทนที่สองวิธีคือ onAccuracyChanged และ onSensorChanged ไวยากรณ์มีดังนี้ -
sMgr.registerListener(this, light,SensorManager.SENSOR_DELAY_NORMAL);
public void onAccuracyChanged(Sensor sensor, int accuracy) {
}
public void onSensorChanged(SensorEvent event) {
}
รับรายการเซ็นเซอร์ที่รองรับ
คุณสามารถรับรายการเซ็นเซอร์ที่อุปกรณ์ของคุณรองรับได้โดยเรียกใช้เมธอด getSensorList ซึ่งจะส่งคืนรายการเซ็นเซอร์ที่มีชื่อและหมายเลขเวอร์ชันและข้อมูลอื่น ๆ อีกมากมาย จากนั้นคุณสามารถทำรายการซ้ำเพื่อรับข้อมูลได้ ไวยากรณ์ได้รับด้านล่าง -
sMgr = (SensorManager)this.getSystemService(SENSOR_SERVICE);
List<Sensor> list = sMgr.getSensorList(Sensor.TYPE_ALL);
for(Sensor sensor: list){
}
นอกเหนือจากวิธีการเหล่านี้แล้วยังมีวิธีการอื่น ๆ ที่จัดเตรียมโดยคลาส SensorManager สำหรับการจัดการกรอบงานเซ็นเซอร์ วิธีการเหล่านี้แสดงไว้ด้านล่าง -
ซีเนียร์ No | วิธีการและคำอธิบาย |
---|---|
1 | getDefaultSensor(int type) วิธีนี้รับเซ็นเซอร์เริ่มต้นสำหรับประเภทที่กำหนด |
2 | getInclination(float[] I) วิธีนี้จะคำนวณมุมเอียง geomagnetic ในหน่วยเรเดียนจากเมทริกซ์เอียง |
3 | registerListener(SensorListener listener, int sensors, int rate) วิธีนี้จะลงทะเบียนผู้ฟังสำหรับเซ็นเซอร์ |
4 | unregisterListener(SensorEventListener listener, Sensor sensor) วิธีนี้จะยกเลิกการลงทะเบียนตัวรับฟังสำหรับเซ็นเซอร์ที่ลงทะเบียนไว้ |
5 | getOrientation(float[] R, float[] values) วิธีนี้คำนวณการวางแนวของอุปกรณ์ตามเมทริกซ์การหมุน |
6 | getAltitude(float p0, float p) วิธีนี้คำนวณระดับความสูงเป็นเมตรจากความดันบรรยากาศและความดันที่ระดับน้ำทะเล |
ตัวอย่าง
นี่คือตัวอย่างที่สาธิตการใช้คลาส SensorManager สร้างแอปพลิเคชันพื้นฐานที่ช่วยให้คุณดูรายการเซ็นเซอร์บนอุปกรณ์ของคุณ
ในการทดลองกับตัวอย่างนี้คุณสามารถเรียกใช้สิ่งนี้บนอุปกรณ์จริงหรือในโปรแกรมจำลอง
ขั้นตอน | คำอธิบาย |
---|---|
1 | คุณจะใช้ Android studio เพื่อสร้างแอปพลิเคชัน Android ภายใต้แพ็คเกจ com.example.sairamkrishna.myapplication |
2 | แก้ไขไฟล์ src / MainActivity.java เพื่อเพิ่มโค้ดที่จำเป็น |
3 | แก้ไข res / layout / activity_main เพื่อเพิ่มคอมโพเนนต์ XML ที่เกี่ยวข้อง |
4 | เรียกใช้แอปพลิเคชันและเลือกอุปกรณ์ Android ที่ใช้งานอยู่และติดตั้งแอปพลิเคชันบนแอปพลิเคชันและตรวจสอบผลลัพธ์ |
ต่อไปนี้เป็นเนื้อหาของการแก้ไข MainActivity.java.
package com.example.sairamkrishna.myapplication;
import android.app.Activity;
import android.hardware.SensorManager;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.TextView;
import java.util.List;
import android.hardware.Sensor;
import android.hardware.SensorManager;
public class MainActivity extends Activity {
TextView tv1=null;
private SensorManager mSensorManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tv1 = (TextView) findViewById(R.id.textView2);
tv1.setVisibility(View.GONE);
mSensorManager = (SensorManager) getSystemService(SENSOR_SERVICE);
List<Sensor> mList= mSensorManager.getSensorList(Sensor.TYPE_ALL);
for (int i = 1; i < mList.size(); i++) {
tv1.setVisibility(View.VISIBLE);
tv1.append("\n" + mList.get(i).getName() + "\n" + mList.get(i).getVendor() + "\n" + mList.get(i).getVersion());
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
ต่อไปนี้เป็นเนื้อหาที่แก้ไขของ xml activity_main.xml.
ในโค้ดด้านล่าง abc ระบุเกี่ยวกับโลโก้ของ tutorialspoint.com
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:transitionGroup="true">
<TextView android:text="Sensor " android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textview"
android:textSize="35dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tutorials point"
android:id="@+id/textView"
android:layout_below="@+id/textview"
android:layout_centerHorizontal="true"
android:textColor="#ff7aff24"
android:textSize="35dp" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView"
android:src="@drawable/abc"
android:layout_below="@+id/textView"
android:layout_centerHorizontal="true"
android:theme="@style/Base.TextAppearance.AppCompat" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Text"
android:id="@+id/textView2"
android:layout_below="@+id/imageView"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
</RelativeLayout>
ต่อไปนี้เป็นเนื้อหาของไฟล์ res/values/string.xml.
<resources>
<string name="app_name">My Application</string>
<string name="hello_world">Hello world!</string>
<string name="action_settings">Settings</string>
</resources>
ต่อไปนี้เป็นเนื้อหาของ AndroidManifest.xml ไฟล์.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.sairamkrishna.myapplication" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
มาลองเรียกใช้แอปพลิเคชันของเราที่เราเพิ่งแก้ไข ฉันถือว่าคุณได้สร้างไฟล์AVDในขณะที่ทำการตั้งค่าสภาพแวดล้อม ในการเรียกใช้แอปจาก Android studio ให้เปิดไฟล์กิจกรรมของโครงการแล้วคลิก
ตอนนี้ถ้าคุณจะดูที่หน้าจออุปกรณ์ของคุณคุณจะเห็นรายการเซ็นเซอร์ที่อุปกรณ์ของคุณรองรับพร้อมกับชื่อรุ่นและข้อมูลอื่น ๆ
หากคุณจะเรียกใช้แอปพลิเคชันนี้บนอุปกรณ์ต่างๆผลลัพธ์จะแตกต่างกันเนื่องจากเอาต์พุตขึ้นอยู่กับจำนวนเซ็นเซอร์ที่อุปกรณ์ของคุณรองรับ