NightWhistler / HtmlSpanner

Android HTML rendering library with CSS support
http://nightwhistler.github.io/HtmlSpanner/
875 stars 208 forks source link

Some css style is missing #15

Closed WOSHICAIXIANFENG closed 11 years ago

WOSHICAIXIANFENG commented 11 years ago

Some css style is missing. e.g. img { float:right; }

div.boxnote-2 { border: double; }

NightWhistler commented 11 years ago

HtmlSpanner is not a full CSS engine, so floating is not planned for now...

Double borders are doable, so I'll keep this issue open to implement those when I have some spare time.

WOSHICAIXIANFENG commented 11 years ago

Can you give me some suggestions to implement those unsupported css tag ?

NightWhistler commented 11 years ago

The double border should be fairly doable: if you look at the BorderSpan, it currently draws a single box... drawing a double box is much the same, just a bit more work.

As to implementing float-right: I don't know if it's even possible in a TextView... it would require manipulating the way that text flows around objects... I haven't researched it deep enough to know how that could be achieved.

WOSHICAIXIANFENG commented 11 years ago

Many thanks for your reply!