java.lang.ClassCastException: android.os.BinderProxy cannot be cast to com.test.Test
Posted robert_hly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java.lang.ClassCastException: android.os.BinderProxy cannot be cast to com.test.Test相关的知识,希望对你有一定的参考价值。
由于我在第二个Activity中指定了进程名字,但是服务却没有指定进程名(默认跟主入口一个进程)所以报错。
网上找到的是 服务 和绑定服务的客户端必须在同一个application或者进程中,所以Manifest中也要指定服务的进程名且和调用服务的Activity的中客户端在同一进程中。
<service android:name=".TestService" android:process="myprocess.remote"/>
<activity android:name=".SecondActivity" android:process="myprocess.remote"/>
以上是关于java.lang.ClassCastException: android.os.BinderProxy cannot be cast to com.test.Test的主要内容,如果未能解决你的问题,请参考以下文章