AndroidでWebビューの背景画像を設定したい。私は次のことをしました:
webView.setBackgroundColor(0);
webView.setBackgroundResource(R.drawable.backgroundImage);
画像をウェブビューの真ん中に配置したい。何か助けてください。
編集 私は解決策を見つけました:
linearLayout.setGravity(Gravity.CENTER);
imageView.setBackgroundResource(R.drawable.backgroundImage);
linearLayout.addView(imageView);
frameLayout.addView(linearLayout);
frameLayout.addView(webView);