我正在尝试从onKeyUp方法返回真实值,但是在移动设备中,当我按音量增大按钮时,仍然有音量工具栏显示。 我正在使用Android 8。 有什么问题吗?
@Override
public boolean onKeyUp(int keyCode, KeyEvent event) {
if(keyCode == KeyEvent.KEYCODE_VOLUME_UP)
VolDown();
return true; //// still showing volume-toolbar when pressing volume-up
}
构建Gradle Module.app
compileSdkVersion 28
defaultConfig {
applicationId "camera.intel.intel.intel.cclicent"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}