Android/webview/コンテンツのない部分を透明に
提供: 初心者エンジニアの簡易メモ
2019年5月13日 (月) 12:10時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==webviewでコンテンツのない部分を透明に== main_activity.xml <LinearLayout android:layout_width="match_parent" android:layout_height="match...」)
webviewでコンテンツのない部分を透明に
main_activity.xml
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="20dp" android:paddingLeft="20dp" android:paddingRight="20dp" android:paddingTop="20dp" android:background="#ff0000" > <WebView android:id="@+id/webview1" android:layout_width="match_parent" android:layout_height="wrap_content" /> </LinearLayout>
MainActivity.java
WebView webview = new WebView(this); webview = (WebView)this.findViewById(R.id.webview1); webview.setWebViewClient(new WebViewClient());String html = "<html><body>
" +
</body></html>";
"<img width='200px' src='/hogehoge.jpeg' />" +"
webview.loadData(html, "text/html", null); webview.setBackgroundColor(Color.TRANSPARENT);