[android-developers] WebView in ListView

2010-10-20 Thread pablitoman
I think this has been asked elsewhere (StackOverflow) but with no satisfactory answer. I have a ListView where each row is composed (mostly) of a WebView. The problem is that you can't touch the WebView and fire the onListItemClick method of ListActivity. I've tried to set

Re: [android-developers] WebView in ListView

2010-10-20 Thread Mark Murphy
On Wed, Oct 20, 2010 at 8:35 PM, pablitoman thebusy...@gmail.com wrote: The contents of the row will require formatted text (bold, italics, superscript, subscript, etc.) and 1 or more images.  To me, this seems like an ideal situation for a WebView, because I don't know ahead of time what the

[android-developers] WebView in ListView

2010-07-22 Thread Ken
I've implemented a list with each item as a WebView. The WebViews are loaded in their own threads so the UI doesn't have to wait. The problem I've ran into is after the list is loaded, some webview items disappears or repeat after the list is scrolled. I've read posts from Romain Guy and others

[android-developers] WebView in ListView

2010-01-20 Thread arnouf
Hi all, I would like to put a webview for each line of my ListView. I've two issues : - how can I a transparent background for the webview (by default white) - I can't select an item of the list (the webview seems to keep the focus and selection for her) Thanks by advance for your help.