我正在使用XML文件在我的应用中显示“关于”页面。此xml文件位于assets文件夹中,并使用WebView布局显示。
我想使用css为此xml文件设置背景图像。该图像位于drawable-mdpi文件夹中。有没有办法可以访问该图像?
我的意思是这样的? (或另类,当然)
<style type="text/css">
body{
background-image:url('path-to-image-in-drawable-mdpi');
}
//...
</style>
感谢您的帮助:)
答案 0 :(得分:1)
如果你写
就行<script type="text/css">
body{background-image:url('file:///android_res/drawable/file_name.jpg');}
</script>