我想在 android 中为 webview 设置背景图像。我做了以下事情:
webView.setBackgroundColor(0);
webView.setBackgroundResource(R.drawable.backgroundImage);
我希望图像位于 webview 的中间。请问有什么帮助吗?
编辑 我找到了解决方案:
linearLayout.setGravity(Gravity.CENTER);
imageView.setBackgroundResource(R.drawable.backgroundImage);
linearLayout.addView(imageView);
frameLayout.addView(linearLayout);
frameLayout.addView(webView);