fm作为eclipse中的android应用程序

时间:2012-06-13 06:57:23

标签: android

我在下面的行中遇到错误。

aManager = (AudioManager)getSystemService(this.AUDIO_SERVICE);

错误表示应以静态方式访问静态字段Context.AUDIO_SERVICE。 解决方案是什么?

1 个答案:

答案 0 :(得分:2)

以静态方式访问它。答案就在你的问题中:

aManager = (AudioManager)getSystemService(Context.AUDIO_SERVICE);