webview-android 客户端学习
2018-07-20 来源:open-open
webview-android 客户端学习,一个不错的webview客户端,有学习webview的朋友可以学习学习。
自定义FinestWebView实现的,这个类封装非常棒,就连头部都颜色动态修改都已经封装好了。
调用代码如下:
new FinestWebView.Builder(this)
.titleDefault("Bless This Stuff")
.toolbarScrollFlags(AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL | AppBarLayout.LayoutParams.SCROLL_FLAG_EXIT_UNTIL_COLLAPSED)
.statusBarColorRes(R.color.redStatusBar)
.toolbarColorRes(R.color.redNavBar)
.titleColorRes(R.color.finestWhite)
.urlColorRes(R.color.redUrlText)
.iconDefaultColorRes(R.color.finestWhite)
.iconSelector(R.drawable.selector_white)
.progressBarColorRes(R.color.finestWhite)
.dividerHeight(0)
.gradientDivider(false)
.setCustomAnimations(R.anim.activity_open_enter, R.anim.activity_open_exit, R.anim.activity_close_enter, R.anim.activity_close_exit)
.show("http://www.blessthisstuff.com");
标签: 代码
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。
下一篇: PHP防止用户重复提交表单