解决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);

你可能感兴趣的:(android)