WebView, add local .CSS file to an HTML page?

后端 未结 3 1765
清酒与你
清酒与你 2020-11-28 04:00

In android I\'m using WebView to display a part of a webpage which I fetched from the internet using HttpClient from Apache. To only have the part I want from the html, I us

3条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-28 04:28

    You cannot store arbitrary files in res - just the specific resource types (drawables, layouts, etc.). The CSS should go to the assets folder instead. Then you can refer to it by the following URL: file:///android_asset/MyStyle.css

提交回复
热议问题