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();
			}

		}

	}
}
配置权限:<uses-permission android:name="android.permission.VIBRATE"/>

运行如下:

技术分享



郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。