Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WebViewa の背景色を16 進数値に設定するにはどうすればよいですか? 私は、経由main.xmlまたはプログラムのいずれかに対してオープンです。
WebView
main.xml
XML リソースで定義WebViewしたと仮定すると、次のことができます。
WebView myWebView = (WebView) findViewById(R.id.myWebView); myWebView.setBackgroundColor(Color.parseColor("#000000"));
xml で:
<WebView android:background = "#7CFC00" />
グリーンなどに。