vnshetty
vnshetty

Reputation: 20132

Android:How to refer css file within html in following situation

hi
In my application i need to display a html page in webview and that html page should refer to sdcard location for .css file (Using link href="...." tag).
I placed 2 files (i.e) html and css ) in sdcard->mibook.
I tried by giving absolute path as link href="/mnt/sdcard/mibook/0.css" how can i specify path name android?

Edited:
Above problem solved : by using this- link href="file:///sdcard/mibook/0.css" But i have following requirement, i need to handle around 50+ html file every time ,

I placed all files as follows,
mibook->book1->pg90.sqlite
mibook->book1->links->o.css and 1.css
The sqlite file contains html pages. each html page has css reference as link href="/links/0.css" These css file should be refer by html. how can i do this?

Upvotes: 3

Views: 2925

Answers (1)

Doon
Doon

Reputation: 20232

Try

link href="file:///sdcard/mibook/0.css"

Assuming Android >= 2.1

Upvotes: 5

Related Questions