我正在三星 Galaxy S3上测试我的应用程序,它有两个触摸按钮,后退按钮和菜单按钮
我设置soundEffectsEnabled
为我的所有根视图,并尝试制作自定义主题(如在此处false
指出的那样)并在应用程序的清单文件中设置该主题(我也尝试将其添加到每个元素)。没有成功。Activity
这是我在res/values中的 xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyCustomTheme" parent="@android:style/Theme.NoTitleBar.Fullscreen">
<item name="android:soundEffectsEnabled">false</item>
</style>
</resources>
我的Application
元素的开始标签:
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/MyCustomTheme" >
它可以正常构建和运行。NoTitleBar.Fullscreen
也可以,但是后退和菜单触摸按钮仍在播放声音。