上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 46 下一页
摘要: 第一步:下载配置jdk 1.下载jdk: 最新jdk下载路径为 https://www.oracle.com/technetwork/java/javase/downloads/index.html jdk8的下载路径为:https://www.oracle.com/technetwork/java 阅读全文
posted @ 2019-01-04 12:17 yongfengnice 阅读(757) 评论(0) 推荐(0) 编辑
摘要: git 提示fatal: Authentication failed for...又不弹出用户名和密码的解决办法: git config --system --unset credential.helper //重置验证设置 阅读全文
posted @ 2019-01-03 12:13 yongfengnice 阅读(1912) 评论(0) 推荐(0) 编辑
摘要: @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //Hide toolbar int SDK_INT = android.os.Build.VERSION.SDK_INT; ... 阅读全文
posted @ 2018-12-20 23:27 yongfengnice 阅读(461) 评论(0) 推荐(0) 编辑
摘要: help@purevpn.com 阅读全文
posted @ 2018-08-23 15:44 yongfengnice 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 百度定位 bdLocation.getCity() 一直返回null的原因: 1.需要setIsNeedAddress(true); LocationClientOption option = new LocationClientOption(); option.setIsNeedAddress(t 阅读全文
posted @ 2018-08-15 18:13 yongfengnice 阅读(557) 评论(0) 推荐(0) 编辑
摘要: <activity android:windowSoftInputMode="adjustPan"/> 解决方法即设置android:windowSoftInputMode 为 adjustPan 阅读全文
posted @ 2018-08-07 11:23 yongfengnice 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 在使用umeng分享的时候,混淆出现以下错误: Can't find common super class of [com/umeng/socialize/shareboard/IndicatorView] (with 3 known super classes) and [com/umeng/so 阅读全文
posted @ 2018-07-19 15:38 yongfengnice 阅读(2338) 评论(0) 推荐(0) 编辑
摘要: 1. 边播放边缓存 视频播放时边播放边缓存,这样用户再次播放时可以节省流量,提高用户体验,这是视频播放很常见的需求。但是,Android的VideoView是没有提供这样的功能的。 有个开源库比较好用,github地址:https://github.com/danikula/AndroidVideo 阅读全文
posted @ 2018-06-15 19:04 yongfengnice 阅读(530) 评论(0) 推荐(0) 编辑
摘要: webp是Android推荐使用的一种图片格式,内存占用很小。使用webp图片是app瘦身和内存优化的很好的方式之一。 下面是webp的使用步骤介绍: 1.下载webp工具,这个google提供给我们将jpg和png等图片转为webp格式图片的工具 https://developers.google 阅读全文
posted @ 2018-06-13 18:05 yongfengnice 阅读(2924) 评论(0) 推荐(0) 编辑
摘要: // Construct a URI that points to the video resource that we want to playUri videoUri = Uri.parse("android.resource://" + getPackageName() + "/" + R.r 阅读全文
posted @ 2018-06-13 14:40 yongfengnice 阅读(362) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 46 下一页