如何在 Kotlin 中偵測晃動事件?
此示例演示如何在 Kotlin 中檢測晃動事件。
步驟 1 − 在 Android Studio 中建立新專案,轉到檔案?新建專案並填寫所有必需的詳細資訊以建立新專案。
步驟 2 − 將以下程式碼新增到 res/layout/activity_main.xml 中。
示例
<?xml version="1.0" encoding="utf-8"?> <LinearLayout 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:orientation="vertical" android:padding="8dp" tools:context=".MainActivity"> <TextView android:id="@+id/textView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="50dp" android:padding="8dp" android:text="Tutorials Point" android:textColor="@color/colorPrimaryDark" android:textSize="48sp" android:textStyle="bold" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Shake the phone to detect to shake event.." android:textSize="24sp" android:textStyle="bold" /> </LinearLayout>
步驟 3 − 將以下程式碼新增到 src/MainActivity.kt 中
示例
import android.content.Context import android.hardware.Sensor import android.hardware.SensorEvent import android.hardware.SensorEventListener import android.hardware.SensorManager import android.os.Bundle import android.widget.Toast import androidx.appcompat.app.AppCompatActivity import java.util.* import kotlin.math.sqrt class MainActivity : AppCompatActivity() { private var sensorManager: SensorManager? = null private var acceleration = 0f private var currentAcceleration = 0f private var lastAcceleration = 0f override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) sensorManager = getSystemService(Context.SENSOR_SERVICE) as SensorManager Objects.requireNonNull(sensorManager)!!.registerListener(sensorListener, sensorManager!! .getDefaultSensor(Sensor.TYPE_ACCELEROMETER), SensorManager.SENSOR_DELAY_NORMAL) acceleration = 10f currentAcceleration = SensorManager.GRAVITY_EARTH lastAcceleration = SensorManager.GRAVITY_EARTH } private val sensorListener: SensorEventListener = object : SensorEventListener { override fun onSensorChanged(event: SensorEvent) { val x = event.values[0] val y = event.values[1] val z = event.values[2] lastAcceleration = currentAcceleration currentAcceleration = sqrt((x * x + y * y + z * z).toDouble()).toFloat() val delta: Float = currentAcceleration - lastAcceleration acceleration = acceleration * 0.9f + delta if (acceleration > 12) { Toast.makeText(applicationContext, "Shake event detected", Toast.LENGTH_SHORT).show() } } override fun onAccuracyChanged(sensor: Sensor, accuracy: Int) {} } override fun onResume() { sensorManager?.registerListener(sensorListener, sensorManager!!.getDefaultSensor( Sensor .TYPE_ACCELEROMETER), SensorManager.SENSOR_DELAY_NORMAL ) super.onResume() } override fun onPause() { sensorManager!!.unregisterListener(sensorListener) super.onPause() } }
步驟 4 − 將以下程式碼新增到 androidManifest.xml 中
示例
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="app.com.q13"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
讓我們嘗試執行你的應用程式。我假設你已經將真正的 Android 移動裝置連線到電腦。要從 android studio 執行該應用,請開啟專案中某個活動檔案,然後單擊工具欄中的執行圖示 。將移動裝置選為選項,然後檢視移動裝置,它將顯示預設螢幕
注意:為了獲得最佳效果,請在自己的裝置上嘗試此操作。
廣告