解决webview因加载慢而出现白屏或者黑屏问题

1、先在webview所在的activity设置一张图片背景

getWindow().setBackgroundDrawable(MainActivity.this.getResources().getDrawable(R.drawable.com_sswl_loading_page));

2、在webview中设置背景为透明即可:

this.setBackgroundColor(ContextCompat.getColor(mContext,android.R.color.transparent));
this.setBackgroundResource(android.R.color.transparent);
发布了36 篇原创文章 · 获赞 9 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_43278826/article/details/94385240
今日推荐