要在unity中调用Android系统的震动,需要一个Vibrator类 ,通过AndroidManifest.xml文件设置权限了
如下:
在这里先给贴出英文文档及大概的翻译 :
Class that operates the vibrator on the device.
If your process exits, any vibration you started wi...
分类:
移动开发 时间:
2015-06-15 18:47:44
阅读次数:
201
android实现手机震动1.在AndroidManifest.xml中添加震动权限<?xmlversion="1.0"encoding="utf-8"?><manifestxmlns:android="http://schemas.android.com/apk/res/android"package="uni.vibrator"android:versionCode="1"android:versionName="1.0"><uses-sdkand..
分类:
移动开发 时间:
2015-05-28 18:25:57
阅读次数:
308
android实现手机震动1.在AndroidManifest.xml中添加震动权限<?xmlversion="1.0"encoding="utf-8"?><manifestxmlns:android="http://schemas.android.com/apk/res/android"package="uni.vibrator"android:versionCode="1"android:versionName="1.0"><uses-sdkand..
分类:
移动开发 时间:
2015-05-28 18:24:35
阅读次数:
595
android实现手机震动
1.在AndroidManifest.xml中添加震动权限
package="uni.vibrator"
android:versionCode="1"
android:versionName="1.0">
...
分类:
移动开发 时间:
2015-05-28 16:15:00
阅读次数:
147
public class MainActivity extends Activity {
/**SensorManager对象*/
private SensorManager mSensorManager;
/**Vibrator对象*/
private Vibrator mVibrator;
/**定义一个常量值*/
private static final int SENSOR_V...
分类:
移动开发 时间:
2015-04-10 15:30:00
阅读次数:
171
android 静音与振动
1,设置静音和振动
静音和振动都属于来电后的动作.所以在设置静音和振动时都只是设置一些标识,并往数据库写入相应标识.
文件:packages/apps/settings/src/com/android/settings/SoundAndDisplaySettings.java
private CheckBoxPreference mSilent;
...
分类:
移动开发 时间:
2015-04-02 18:59:20
阅读次数:
157
百度定位DEMOLocation.java类package com.example.baidudemo;import android.app.Application; import android.os.Process;import android.os.Vibrator;import androi...
分类:
其他好文 时间:
2015-03-17 13:57:02
阅读次数:
1088
昨天在qq群上有人问到类似QQ的聊天窗口抖动效果是怎么实现的,在这里我就简单的实现了一下,贴上代码:
final View decorView = ((ViewGroup) findViewById(android.R.id.content)).getChildAt(0);
Vibrator vibrator = (Vibrator) getSystemSe...
分类:
移动开发 时间:
2015-03-16 09:54:05
阅读次数:
237
main.xml代码如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertica...
分类:
移动开发 时间:
2015-03-09 12:59:05
阅读次数:
202
Vibrator是安卓提供的震动器,其没有构造器,通过getSystemService(Context.VIBRATOR_SERVICE)方法获取对象。但使用此类时需要在清单文件中添加访问权限android.permission.VIBRATE.在实际使用可以设置震动周期已经访问时间package ...
分类:
移动开发 时间:
2015-03-06 15:40:11
阅读次数:
163