当我点击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);
}
答案 0 :(得分:0)
您必须指定使用振动器的权限。否则,安全框架将关闭您的应用程序。
<manifest>
...
<uses-permission android:name="android.permission.VIBRATE"/>
...
</manifest>