2017年6月20日

android 代码设置图标背景色(圆形图标)和图标颜色

摘要: 原图: 1、改变图标颜色: 效果: 2、改变图标背景色(主要是圆形图标) 使用开源项目:https://github.com/hdodenhof/CircleImageView 效果: 阅读全文

posted @ 2017-06-20 09:33 guangdeshishe 阅读(926) 评论(0) 推荐(0) 编辑

2017年6月17日

ssh: connect to git@gitlab.xxxxx.com:xxxxx.git port 22: Connection refused

摘要: 公司服务器上的gitlab项目添加了ssh密钥,但是操作时却报错ssh: connect to git@gitlab.xxxxx.com:xxxxx.git port 22: Connection refused 经过研究发现gitlab不仅支持ssh也支持http链接获取项目: 将原来的ssh链接 阅读全文

posted @ 2017-06-17 11:33 guangdeshishe 阅读(1268) 评论(0) 推荐(0) 编辑

2017年6月8日

Python MonkeyRunner 连接设备总是返回连接成功问题

摘要: device = mr.waitForConnection(1,deviceName) 当使用waitForConnection时,不管设备是否连接,device总是返回一个对象,所以没有办法通过 if not device:来准确判断设备是否真的连接成功; 解决的办法是: try: device 阅读全文

posted @ 2017-06-08 11:51 guangdeshishe 阅读(365) 评论(0) 推荐(0) 编辑

2017年4月28日

Charles 查看https请求数据 Mac/ android

摘要: Charles_v4.0.1_Mac_破解版下载地址:https://pan.baidu.com/s/1c23VPuS 1、在Mac电脑上安装Charles的根证书 打开Charles->菜单Help->SSL Proxying->Install Charles Root Certificate 输 阅读全文

posted @ 2017-04-28 17:54 guangdeshishe 阅读(1032) 评论(0) 推荐(1) 编辑

2017年4月25日

MonkeyRunner Mac环境 录制脚本和回放 批量回放

摘要: 1、MonkeyRunner是AndroidSDK自带的一个东西,在SDK目录中的tools\bin文件夹中 2、配置环境变量 编辑环境变量:打开终端输入:open ~/.bash_profile 将sdk/tools/bin所在路径添加到环境变量 使配置生效终端输入:~/.zshrc 3、运行 M 阅读全文

posted @ 2017-04-25 18:12 guangdeshishe 阅读(1580) 评论(0) 推荐(0) 编辑

2017年4月12日

android toolbar 显示返回按钮并改变按钮颜色

摘要: <android.support.design.widget.AppBarLayout android:id="@+id/about_appbar" android:layout_width="match_parent" android:layout_height="wrap_content" an 阅读全文

posted @ 2017-04-12 13:01 guangdeshishe 阅读(2056) 评论(0) 推荐(1) 编辑

2017年4月10日

android 获取webview内容真实高度(webview上下可滚动距离)

摘要: 正常获取: mainWebView.getContentHeight()//获取html高度 mainWebView.getScale()//手机上网页缩放比例 mainWebView.getHeight()//WebView控件的高度 mainWebView.getContentHeight() 阅读全文

posted @ 2017-04-10 17:00 guangdeshishe 阅读(18208) 评论(0) 推荐(0) 编辑

2017年3月29日

android button setMinHeight setMinWidth 无效解决办法

摘要: setMinWidth(0);setMinHeight(0);setMinimumWidth(0);//必须同时设置这个setMinimumHeight(0);//必须同时设置这个两个方法同时设置才能生效 阅读全文

posted @ 2017-03-29 09:40 guangdeshishe 阅读(4677) 评论(0) 推荐(1) 编辑

2017年3月1日

No Delegate set : lost message:libpng error: Not a PNG file

摘要: 当出现这个问题时,是因为本来是jpg或其他格式的图片存成了png导致的。或者有的图片本来就是jpg的,Android Studio一编译,发现不是png才造成了这个问题。解决这个问题可以在Android Studio中打开每张图片,查看右上角是否有jpg的字样,如果有jpg的字样而且图片是png后缀 阅读全文

posted @ 2017-03-01 10:24 guangdeshishe 阅读(469) 评论(0) 推荐(0) 编辑

2016年12月19日

android 获取颜色 getColor 方法 deprecated 过期

摘要: 可以使用下面代码代替: 需要引入: 阅读全文

posted @ 2016-12-19 14:55 guangdeshishe 阅读(2137) 评论(0) 推荐(0) 编辑

导航