`

手机震动的节奏

 
阅读更多

 手机震动可以是一种提醒或是替换铃声的事件,如果想要让手机乖乖的震动,需要创建Vibrator对象通过Vibrator方法来实现达到震动的模式,在Vibrator的构造方法中有四个参数前三个值是设置震动的大小,可以把数值改成一大一小这样就可以明显感觉到震动的差异,而最后一个值是震动的时间,  Repeat=0时,震动会一直持续repeat=-1震动只会出现一轮,运动完毕后就不再震动

判断ToggleButton是否被开启。如果单击就是“ON”就会启动震动模式如果点击OFF就会关闭振动模式

先定义一个Activity

 

package cn.hwttnet.com.ui;

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 EX05_06Activity extends Activity {

	private Vibrator vbt;
	private ToggleButton tb1, tb2, tb3;

	/** Called when the activity is first created. */
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		vbt = (Vibrator) getApplication().getSystemService(
				Service.VIBRATOR_SERVICE);
		final ToggleButton tb1 = (ToggleButton) findViewById(R.id.toggleButton1);
		final ToggleButton tb2 = (ToggleButton) findViewById(R.id.toggleButton2);
		final ToggleButton tb3 = (ToggleButton) findViewById(R.id.toggleButton3);
		//短震动
		tb1.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View v) {
				// TODO Auto-generated method stub
				if (tb1.isChecked()) {

					vbt.vibrate(new long[] { 100, 10, 100, 1000 }, -1);
					Toast.makeText(getApplicationContext(), "震动开启",
							Toast.LENGTH_LONG).show();
				} else {
					vbt.cancel();
					Toast.makeText(getApplicationContext(), "震动取消",
							Toast.LENGTH_LONG).show();
				}
			}
		});
		//长震动
		tb2.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View v) {
				// TODO Auto-generated method stub
				if (tb2.isChecked()) {

					vbt.vibrate(new long[] { 100, 100, 100, 1000 }, 0);
					Toast.makeText(getApplicationContext(), "震动开启",
							Toast.LENGTH_LONG).show();
				} else {
					vbt.cancel();
					Toast.makeText(getApplicationContext(), "震动取消",
							Toast.LENGTH_LONG).show();
				}
			}
		});
		//节奏震动
		tb3.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View v) {
				// TODO Auto-generated method stub
				if (tb3.isChecked()) {

					vbt.vibrate(new long[] { 1000, 50, 1000, 50,1000 }, 0);
					Toast.makeText(getApplicationContext(), "震动开启",
							Toast.LENGTH_LONG).show();
				} else {
					vbt.cancel();
					Toast.makeText(getApplicationContext(), "震动取消",
							Toast.LENGTH_LONG).show();
				}
			}
		});
	}
}

 

定义一个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" >

    <TableLayout
        android:id="@+id/tableLayout"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:collapseColumns="3"
        android:stretchColumns="1" >

        <TableRow
            android:id="@+id/tablerow1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center" >

            <ToggleButton
                android:id="@+id/toggleButton1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="短震动" />
        </TableRow>

        <TableRow
            android:id="@+id/tablerow2"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center" >

            <ToggleButton
                android:id="@+id/toggleButton2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

            <TextView
                android:id="@+id/textView2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="长震动" />
        </TableRow>

        <TableRow
            android:id="@+id/tablerow3"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center" >

            <ToggleButton
                android:id="@+id/toggleButton3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

            <TextView
                android:id="@+id/textView3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="节奏震动" />
        </TableRow>
    </TableLayout>

</LinearLayout>

 

然后震动事件必须允许android .permission.VIBARTE权限

<uses-permission android:name="android.permission.VIBRATE"/>
试着把震动的大小做多变化的改变在long[]里面多做一些变化

tb3.vibrate(new long[]{10000,500,10000,500,10000,500,10000},0);

分享到:
评论

相关推荐

    android手机震动节奏

    ### Android手机震动节奏知识点解析 #### 一、引言 在Android开发中,手机震动功能是一种常见的用户交互方式,它可以作为一种提醒或者替代铃声的方法。本文档将详细介绍如何利用Android中的`Vibrator`类实现手机...

    android 手机震动的节奏 Vibrator

    下面是一个创建复杂震动节奏的例子: ```java long[] vibrationPattern = {0, 50, 100, 50, 200, 100}; // 0ms开始,然后50ms震动,100ms停,50ms震,200ms停,100ms震 vibrator.vibrate(vibrationPattern, -1); ``...

    手机震动提示

    在智能手机的日常使用中,"手机震动提示"是一种常见的功能,它允许用户在接收通知、来电或其他特定事件时,通过设备的内置马达产生震动反馈,而非依赖声音提醒。这在静音环境下或者用户需要保持低调的情况下尤其有用...

    调用手机震动实验源码+注释

    在Android系统中,调用手机震动功能是通过`Vibrator`类实现的。这个类提供了对设备震动硬件的控制,让我们能够实现各种基于震动的反馈效果。在这个“调用手机震动实验源码+注释”中,我们可以学习如何在Android应用...

    手机震动插件.zip

    手机震动插件是一种软件工具,专门用于为Android和iOS设备提供自定义的震动效果。它通过封装API(应用程序编程接口)使得开发者或普通用户能够轻松地控制手机的震动功能,从而实现不同场景下的个性化体验。在移动...

    Android之手机震动效果实现

    在Android平台上,实现手机震动效果是一项常见的功能,可以用于提醒用户或者增强交互体验。下面将详细解释如何在Android应用中实现实现手机震动,并通过一个简单的示例代码VibratorDemo来展示具体步骤。 首先,我们...

    Android中手机震动的设置(Vibrator)的步骤简要说明

    在Android应用开发中,有时需要实现手机震动的功能,例如在通知提醒、游戏反馈或其他互动场景下。Android系统提供了Vibrator类来实现这一功能。以下是详细的知识点解释: 1. **获取Vibrator服务**: 要使用...

    浅析Android手机卫士之抖动输入框和手机震动

    例如,在查询手机号码归属地的功能中,如果用户未输入号码,可以先执行输入框的抖动动画,再进行手机震动,同时显示提示信息: ```java public void queryNumber(View v) { String phone = et_phone.getText()....

    电话来电振铃震动特效,基于Flash.rar

    文件中的内容包括一系列精心制作的电话振铃动画序列,每一帧都精细到可以体现出铃声的节奏和震动的细节。这些动画素材不仅适用于电话铃声场景,还可以在需要展示通讯过程的场景中发挥作用,比如在讲述故事或演示操作...

    手机游戏的交互设计有何不同.rar

    9. 操作反馈:良好的手机游戏交互设计会给予用户清晰的操作反馈,无论是音效、震动还是视觉提示,都能让用户知道他们的动作已被系统识别。 10. 用户习惯与教程:手机游戏用户群体广泛,设计师需要考虑新手和资深...

    Android中模仿心跳效果小程序

    这个"Android中模仿心跳效果小程序"就是一个很好的示例,它主要用于在特定场景下(如计时结束)通过手机震动来营造紧张氛围。由于Android模拟器不支持硬件震动功能,所以这类效果必须在真实的Android设备上进行测试...

    google android sdk开发范例大全 第二版 PDF 光盘代码

     5.6 手机震动的节奏   5.7 图文可视化提醒   5.8 状态栏的图标与文字提醒   5.9 搜索手机通讯录自动完成   5.10 取得联系人资料   5.11 制作有图标的文件资源 .管.理. 器   5.12 还原...

    Google Android SDK开发范例大全(PDF高清完整版3)(4-3)

    5.6 手机震动的节奏——Vibrator对象及周期运用 5.7 图文可视化提醒——Toast与LinearLayoutView 5.8 状态栏的图标与文字提醒——NotificationManager与Notification对象的应用 5.9 搜索手机通讯录自动完成——使用...

    Google Android SDK开发范例大全(PDF完整版4)(4-4)

    5.6 手机震动的节奏——Vibrator对象及周期运用 5.7 图文可视化提醒——Toast与LinearLayoutView 5.8 状态栏的图标与文字提醒——NotificationManager与Notification对象的应用 5.9 搜索手机通讯录自动完成——使用...

    Google Android SDK开发范例大全(PDF高清完整版1)(4-1)

    5.6 手机震动的节奏——Vibrator对象及周期运用 5.7 图文可视化提醒——Toast与LinearLayoutView 5.8 状态栏的图标与文字提醒——NotificationManager与Notification对象的应用 5.9 搜索手机通讯录自动完成——使用...

    用户交互设计:手机产品交互设计样式

    - **案例分析**:Nexus One手机通过震动反馈告诉用户已点击某个物理按键;三星Anycall Haptic手机则在使用特定功能时通过触觉传递信息。 - **技术创新**:索尼公司的“触觉引擎”技术利用触觉产生器将电子信号转化为...

    电子元器件2020年第47周:华为出售荣耀定音,MiniLED进程打开重启节奏.zip

    这一举动不仅震动了整个科技行业,也为市场带来了深远的影响。荣耀,作为华为的子品牌,一直以来以其高性价比和创新技术深受消费者喜爱,此次剥离是华为应对美国制裁的策略之一,旨在保护荣耀品牌及产业链的生存与...

    Google Android SDK开发范例大全(完整版)

    5.6 手机震动的节奏——Vibrator对象及周期运用 5.7 图文可视化提醒——Toast与LinearLayoutView 5.8 状态栏的图标与文字提醒——NotificationManager与Notification对象的应用 5.9 搜索手机通讯录自动完成——使用...

    Google Android SDK开发范例大全的目录

    5.6 手机震动的节奏——Vibrator对象及周期运用 5.7 图文可视化提醒——Toast与LinearLayoutView 5.8 状态栏的图标与文字提醒——NotificationManager与Notification对象的应用-p178 5.9 搜索手机通讯录自动完成——...

Global site tag (gtag.js) - Google Analytics