Android - UI for text wrap an image

android

Solution

Why not just use a `WebView`? You'll have more freedom in the future to customize the layout that way.

If a `WebView` is too heavyweight for your use case, you'll probably need to render the text and image manually. You may find some relevant information in this android-developers thread.

Problem

Is there anyway to wrap a TextView around an image? It's the typical thing that people do in CSS like this http://www.echoecho.com/htmlimages08.htm Thanks, Tee

Original source

Related problems