标签: android
我在下面的行中遇到错误。
aManager = (AudioManager)getSystemService(this.AUDIO_SERVICE);
错误表示应以静态方式访问静态字段Context.AUDIO_SERVICE。 解决方案是什么?
Context.AUDIO_SERVICE
答案 0 :(得分:2)
以静态方式访问它。答案就在你的问题中:
aManager = (AudioManager)getSystemService(Context.AUDIO_SERVICE);