robert_hly

踩坑填坑记录...

导航

2017年3月4日 #

java.lang.ClassCastException: android.os.BinderProxy cannot be cast to com.test.Test

摘要: 由于我在第二个Activity中指定了进程名字,但是服务却没有指定进程名(默认跟主入口一个进程)所以报错。 网上找到的是 服务 和绑定服务的客户端必须在同一个application或者进程中,所以Manifest中也要指定服务的进程名且和调用服务的Activity的中客户端在同一进程中。 <serv 阅读全文

posted @ 2017-03-04 12:39 robert_hly 阅读(1305) 评论(0) 推荐(0) 编辑

发送广播给已经停止的应用

摘要: 默认是不会发给已经停止的应用的 发送广播需要设置标识位 intent.addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGED);//发给停止的 intent.addFlags(Intent.FLAG_EXCLUDE_STOPPED_PACKAGED);//不发给停 阅读全文

posted @ 2017-03-04 10:25 robert_hly 阅读(130) 评论(0) 推荐(0) 编辑

Activity中通过标签获取当前Fragment

摘要: 初始化完成之后才有数据,否则获取不到 String tag = "android:switcher:"+viewPager.getId()+":"+viewPager.getCurrentItem(); Fragment fg = getSupportFragmentManager().findFr 阅读全文

posted @ 2017-03-04 08:56 robert_hly 阅读(368) 评论(0) 推荐(0) 编辑

android 获取Asset中Properties文件配置的键值对

摘要: 1 获取 AssetManager AssetManager assetManager = context.getApplicationContext().getAssets(); 2 获取流 String confFile = "abc.properties"; Properties conf = 阅读全文

posted @ 2017-03-04 08:35 robert_hly 阅读(310) 评论(0) 推荐(0) 编辑