Android振动器服务错误

时间:2012-04-29 03:18:50

标签: android android-vibration

当我点击Buttons时,是否有人知道为什么我的振动服务出错?它说"....... force close"。这是我的代码:

final Vibrator mVibrator = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);

public void onClick(View v) {
    Intent newgameIntent = new Intent(BodyPartsGameActivity.this,gamelevel.class);
    startActivity(newgameIntent);
    mp.start();
    mVibrator.vibrate(500);
}

1 个答案:

答案 0 :(得分:0)

您必须指定使用振动器的权限。否则,安全框架将关闭您的应用程序。

<manifest>
    ...
    <uses-permission android:name="android.permission.VIBRATE"/>
    ...
</manifest>