0

有谁知道为什么我的振动服务在我单击时出现错误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);
}
4

1 回答 1

0

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

<manifest>
    ...
    <uses-permission android:name="android.permission.VIBRATE"/>
    ...
</manifest>
于 2012-04-29T09:35:43.367 回答