
个人
wmhqnyh
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【GIT】HTTP 413 curl 22 The requested URL returned error: 413 Request Entity Too Large
>git push origin HEAD:refs/for/feature Enumerating objects: 100, done. Counting objects: 100% (100/100), done. Delta compression using up to 4 threads Compressing objects: 100% (77/77), done. Writi...原创 2018-10-31 22:33:12 · 789 阅读 · 0 评论 -
【Android-WebView】截取内容白屏的问题
【Android-WebView】截取内容生成Bitmap 1.在Android 5.0以下与以上,会有不同,产生白屏的问题(5.0以上) import static android.webkit.WebView.enableSlowWholeDocumentDraw; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP...原创 2018-11-01 22:13:57 · 940 阅读 · 0 评论 -
【Android】WebView内核与XWalk内核获取屏幕内容截图总结
1.项目中使用到的截图方法: public static Bitmap getWebViewContentShot(final View view) { if (view == null) return null; view.setDrawingCacheEnabled(true); view.buildDrawingCache(); int measureSpec = View.Measur...原创 2018-11-11 20:56:14 · 922 阅读 · 0 评论