Android - Unsupported Service: audio

后端 未结 5 1205
挽巷
挽巷 2021-01-04 05:42

I am trying to understand and resolve and error I am seeing in the Eclipse workspace log while working on an Android app that implements an IME. I am new to Android and Ecli

5条回答
  •  攒了一身酷
    2021-01-04 06:21

    This is a bug in android.inputmethodservice.KeyboardView

    The failing code is

    public KeyboardView(Context context, AttributeSet attrs, int defStyle) { 
    ...
        mAudioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE); 
    ...
    }
    

    It should be wrapped in isInEditMode() check to skip getting audio manager during layout editing. Strange but I cannot find any issue reported in the Android bug tracker!

提交回复
热议问题