Android開發學習:[29]android手機震動程式碼?

Vibrator是安卓提供的震動器,其沒有構造器,通過getSystemService(Context.VIBRATOR_SERVICE)方法獲取物件。但使用此類時需要在清單檔案中新增訪問許可權android.permission.VIBRATE.在實際使用可以設定震動週期已經訪問時間.

工具/原料

Android Studio

方法/步驟

首先我們新建一個activity.將其設定為啟動項,記得在清單檔案中新增intent-filter:

Android開發學習:[29]android手機震動程式碼

然後我們在介面程式碼中新增三個按鈕,分別是長、短、暫停震動的按鈕

xmlns:tools="; android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context="com.basillee.asus.demo.MainActivity10">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="shortButton"

android:id="@+id/short_vibrate"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="shortButton"

android:id="@+id/long_vibrate"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="shortButton"

android:id="@+id/stop_vibrate"/>

Android開發學習:[29]android手機震動程式碼

然後我們為每個按鈕新增點選事件監聽

shortButton.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

vibrator.vibrate(new long[]{100,100},0);

}

});

longButton.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

vibrator.vibrate(new long[]{1000,3000,1000,3000},-1);

}

});

stopButton.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

vibrator.cancel();

}

});

Android開發學習:[29]android手機震動程式碼

完成以上步驟之後我們就可以點選android studio上面的執行按鈕了

Android開發學習:[29]android手機震動程式碼

然後開啟我們的模擬器

Android開發學習:[29]android手機震動程式碼

最後執行此例項的介面如下,放入真實手機中測試便會震動。記得要新增許可權啊

Android開發學習:[29]android手機震動程式碼

注意事項

持續更新

程式碼, 許可權,
相關問題答案