我设法让我的耳机按钮在按下时被我的应用程序识别,但是其中一个按钮需要调用 MyCustomActivity 中的方法。问题是 onReceive 的第一个参数是一个不能转换为 Activity 的 Context 并且使用 MyCustomActivity 的内部类 在 Android 4.1 中将无法工作,除非它是静态的(同样的问题是无法访问 MyCustomActivity 的方法。
所以留给我的唯一选择(为了同时支持 2.x 和 4.1)是将活动作为参数传递给RemoteControlReceiver。
但是,当实例化它的唯一方法是通过以下方式时,我该怎么做:
private ComponentName mRemoteControlReceiver = new ComponentName(this, RemoteControlReceiver.class);
哪个不接受任何附加参数?
知道如何解决这个限制吗?
注意:如果我尝试将构造函数定义RemoteControlReceiver
为带参数的构造函数,则会收到以下异常:
E/AndroidRuntime(2836): java.lang.RuntimeException: Unable to instantiate receiver com.example.RemoteControlReceiver: java.lang.InstantiationException: can't instantiate class com.example.RemoteControlReceiver; no empty constructor
Caused by:
E/AndroidRuntime(2836): Caused by: java.lang.InstantiationException: can't instantiate class com.example.RemoteControlReceiver; no empty constructor
E/AndroidRuntime(2836): at java.lang.Class.newInstanceImpl(Native Method)
E/AndroidRuntime(2836): at java.lang.Class.newInstance(Class.java:1319)
E/AndroidRuntime(2836): at android.app.ActivityThread.handleReceiver(ActivityThread.java:2205)
所以很明显,这个新的 registerMediaButtonEventReceiver 要求(在 Android 4.1 中引入)需要一个空的构造函数。
有没有办法解决这个问题?
例如,有没有办法获得对实际 RemoteControlReceiver 对象的引用(通过 间接实例化mAudioManager.registerMediaButtonEventReceiver()
)?这样我就可以在实例化后使用访问器设置 RemoteControlReceiver 的数据成员吗?