随着RecycleView的滑动实现标题栏透明度渐变 2019-08-15 | 2020-12-24 | Android 1.2k 字 | 6 分钟改变布局背景透明度让一个布局的背景变色,关键是这行代码:ll_tool_bar.getBackground().setAlpha(int alpha); 阅读全文 »
Android4.4以后第三方应用无法删除短信的解决方案 2019-07-30 | 2020-12-24 | Android 1.5k 字 | 6 分钟概述最近在做短信删除功能,发现在红米6上Android8.0上无法删除短信分析在google查阅后得知:Android为了防止第三方软件拦截短信和偷发短信吸费,在android4.4之后,只有默认的短信应用才有权限操作短信数据库。Android4.4短信机制的改变:Getting Your SMS Apps Ready for KitKat 阅读全文 »
git push port 22 Connection timed out 2019-07-16 | 2020-12-24 | Git 230 字 | 1 分钟问题提交代码是出现问题:$ git push origin masterssh: connect to host github.com port 22: Connection timed outfatal: Could not read from remote repository.接下来我们在重新尝试下ssh连接github$ ssh git@github.comssh: connect to host github.com port 22: Connection timed out看来是端口22问题,更换443试试 阅读全文 »
获取主卡和双卡手机IMEI,IMSI,ICCID 2019-07-15 | 2020-12-24 | Android 2.3k 字 | 11 分钟首先要添加权限<uses-permission android:name="android.permission.READ_PHONE_STATE"/>获取主卡的IMEI,IMSI,ICCID如果一张手机卡那就是获取当前使用的手机卡的信息如果2张手机卡,那就是获取的主卡信息,所谓主卡就是设置了默认打电话的卡 阅读全文 »