01 2018 档案

摘要:一共有两个分支 使用Git下载指定分支命令为:git clone -b 分支名仓库地址 git clone -b +分支 + 地址 study 查看各个分支当前所指的对象 git log --oneline --decorate 项目分叉历史 git log --oneline --decorate 阅读全文
posted @ 2018-01-31 23:50 dub 阅读(2290) 评论(0) 推荐(0)
摘要:1,注册Bugly帐号 2.项目 build.gradle 中配置 compile 'com.tencent.bugly:crashreport:latest.release'//其中latest.release指代最新Bugly SDK版本号,也可以指定明确的版本号,例如2.1.9 3.MyApp 阅读全文
posted @ 2018-01-26 09:55 dub 阅读(247) 评论(0) 推荐(0)
摘要:radioButtons = new RadioButton[rgMain.getChildCount()]; //遍历RadioGroupfor (int i = 0; i < radioButtons.length; i++) { radioButtons[i] = (RadioButton) 阅读全文
posted @ 2018-01-21 16:55 dub 阅读(116) 评论(0) 推荐(0)
摘要:原因是解析的时候多了,逗号,或是 \ 解决方法:一 revJson=revJson.replace("\\", "");//去掉'/' revJson=revJson.substring(1, revJson.length()-1); //去掉头尾引号。 简单对象解析: BeanOrderInten 阅读全文
posted @ 2018-01-17 11:36 dub 阅读(759) 评论(0) 推荐(0)
摘要:方法一: public void launchAppDetail(String appPkg, String marketPkg) { try { if (TextUtils.isEmpty(appPkg))return; Uri uri = Uri.parse("market://details? 阅读全文
posted @ 2018-01-15 22:21 dub 阅读(1401) 评论(0) 推荐(0)