【Android】Vibrator(震動模式)設置長短震動

main.xml代碼如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
 
    <ToggleButton
        android:id="@+id/btn1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textOn="ON"
        android:textOff="OFF"
        android:text="短震動" />
 
    <ToggleButton
        android:id="@+id/btn2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textOn="ON"
        android:textOff="OFF"
        android:text="長震動" />
 
    <ToggleButton
        android:id="@+id/btn3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textOn="ON"
        android:textOff="OFF"
        android:text="節奏震動" />
 
</LinearLayout>

Java代碼如下

package org.lxh.demo;
 
import android.app.Activity;
import android.app.Service;
import android.os.Bundle;
import android.os.Vibrator;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Toast;
import android.widget.ToggleButton;
 
public class Hello extends Activity {
	private ToggleButton btn1 = null;
	private ToggleButton btn2 = null;
	private ToggleButton btn3 = null;
	private Vibrator myVibrator = null;
 
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState); // 生命週期方法
		super.setContentView(R.layout.main); // 設置要使用的佈局管理器
		this.myVibrator = (Vibrator) getApplication().getSystemService(
				Service.VIBRATOR_SERVICE);
		this.btn1 = (ToggleButton) super.findViewById(R.id.btn1);
		this.btn2 = (ToggleButton) super.findViewById(R.id.btn2);
		this.btn3 = (ToggleButton) super.findViewById(R.id.btn3);
		this.btn1.setOnClickListener(new Btn1());
		this.btn2.setOnClickListener(new Btn2());
		this.btn3.setOnClickListener(new Btn3());
 
	}
 
	private class Btn1 implements OnClickListener {
 
		public void onClick(View arg0) {
			if (btn1.isChecked()) {
				Hello.this.myVibrator.vibrate(
						new long[] { 100, 10, 100, 1000 }, -1);
				Toast.makeText(Hello.this, "短震動", Toast.LENGTH_SHORT).show();
			} else {
				Hello.this.myVibrator.cancel();
				Toast.makeText(Hello.this, "取消短震動", Toast.LENGTH_SHORT).show();
			}
 
		}
 
	}
 
	private class Btn2 implements OnClickListener {
 
		public void onClick(View arg0) {
			if (btn2.isChecked()) {
				Hello.this.myVibrator.vibrate(
						new long[] { 100, 100, 100, 1000 }, 0);
				Toast.makeText(Hello.this, "長震動", Toast.LENGTH_SHORT).show();
			} else {
				Hello.this.myVibrator.cancel();
				Toast.makeText(Hello.this, "取消長震動", Toast.LENGTH_SHORT).show();
			}
 
		}
 
	}
 
	private class Btn3 implements OnClickListener {
 
		public void onClick(View arg0) {
			if (btn3.isChecked()) {
				Hello.this.myVibrator.vibrate(
						new long[] { 1000, 50, 1000, 50 }, 0);
				Toast.makeText(Hello.this, "節奏震動", Toast.LENGTH_SHORT).show();
			} else {
				Hello.this.myVibrator.cancel();
				Toast.makeText(Hello.this, "取消節奏震動", Toast.LENGTH_SHORT).show();
			}
 
		}
 
	}
}
震動權限: android.permission.VIBRATE

在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章