本程序实现功能:登录成功,手机开始振动,跳转到另一个界面。模拟器无法实现真正的振动,要看效果,可以在自己手机上调试。
首先添加振动权限:
<uses-permission android:name="android.permission.VIBRATE"></uses-permission>
<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" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dp" android:orientation="horizontal" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="用户名:" /> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="3dp" android:text="copper" android:id="@+id/username" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dp" android:orientation="horizontal" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="密码:" /> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="3dp" android:password="true" android:id="@+id/password" android:text="111111" /> </LinearLayout> <Button android:id="@+id/btn" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="登录" android:layout_marginTop="5dp" /> </LinearLayout>
要实现振动功能,主要使用的类Vibrator,通过该类设置振动时间和振动次数:
vb.vibrate(new long[]{100,10,100,10000}, -1);
在Vibrate构造器中有4个参数,前3个值为设定振动的大小,将数值改成一大一小就可以感觉到振动的差异,最后一个值为振动的时间。当repeat值为0是表示振动会一直持续下去,当repeat值为-1时,表示振动只会出现一轮,运行完毕不会再有振动的出现。
下面给出示例功能代码:
package com.example.sample5_9; import android.app.Activity; import android.app.Service; import android.os.Bundle; import android.os.Handler; import android.os.Vibrator; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; public class MainActivity extends Activity implements OnClickListener{ private EditText et1; private EditText et2; private Button btn; private Vibrator vb;//振动使用的类 Handler handler = new Handler(){ @Override public void handleMessage(android.os.Message msg) { switch (msg.what) { case 0: Toast.makeText(MainActivity.this, "手机振动已取消", Toast.LENGTH_SHORT).show(); break; } }; }; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); vb = (Vibrator) this.getSystemService(Service.VIBRATOR_SERVICE); InitViews(); } private void InitViews() { et1 = (EditText) findViewById(R.id.username); et2 = (EditText) findViewById(R.id.password); btn = (Button) findViewById(R.id.btn); btn.setOnClickListener(this); } @Override public void onClick(View v) { String username = et1.getText().toString().trim(); String password = et2.getText().toString().trim(); if("copper".equalsIgnoreCase(username) && "111111".equalsIgnoreCase(password)){ setContentView(R.layout.change); new Thread(){ @Override public void run() { try { Thread.sleep(2000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } handler.sendEmptyMessage(0); }; }.start(); vb.vibrate(new long[]{100,10,100,10000}, -1); Toast.makeText(MainActivity.this, "手机在振动", Toast.LENGTH_SHORT).show(); }else { Toast.makeText(MainActivity.this, "用户名或者密码错误", Toast.LENGTH_SHORT).show(); } } }