我正在开发一个具有以下功能的小应用程序(最低sdk要求的Android OS版本2.3.3):
当用户完全按下音量减小按钮 3次时,会出现一个Toast消息。这是代码:
static short btnCount=0;
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
btnCount++;
if ((keyCode == KeyEvent.KEYCODE_VOLUME_DOWN) && btnCount==3){
//Do something
Toast.makeText(this, "Volume Button Pressed", 2).show();
btnCount=0;
}
return true;
}
这是我的清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.testvolumeapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.testvolumeapp.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
它在模拟器上工作得非常好但是由于某种原因它不适用于我的HTC有Android OS版本2.3.5。这是为什么?什么可能出错?