[android-developers] Re: URGENT!!!!! Can't update apps in android market!!!

2009-04-24 Thread yhfudev
You may move the to the first line, after the . On Apr 24, 6:04 am, "s...@zooropa.com" wrote: > Okay I just sent a message to Google we'll see what they say. > > On Apr 24, 6:17 am, "Al Sutton" wrote:> There's > little the people on this list can do to help you with the inner > > workings of

[android-developers] Re: Some bugs of WebView

2009-02-14 Thread yhfudev
After I have tried some methods, it could work now. use: loadDataWithBaseURL (null, content, "text/html", "utf-8", "about:blank"); Thank you very much! On Feb 11, 3:21 pm, Mark Murphy wrote: > kolby wrote: > > Hmmm, > > >    String test = "some text > \"#00ff00\">in green"; > >    web.loadDat

[android-developers] Re: # special characters in webview

2009-02-14 Thread yhfudev
You may use: loadDataWithBaseURL (null, content, "text/html", "utf-8", "about:blank"); On Jan 27, 7:45 am, Bob wrote: > Hi, > I am populating awebviewwith the loaddata option but special > characters such as "'" for quotation mark aren't showing up and > end the display.  What am I doing wrong?

[android-developers] Re: Has anyone succeeded in displaying non latin-1 characters in Webview after RC33?

2009-02-14 Thread yhfudev
you may use: loadDataWithBaseURL (null, content, "text/html", "utf-8", "about:blank"); On Feb 13, 2:33 pm, Mark Murphy wrote: > Chister Nordvik wrote: > > String xml = "" + > >   "" + > >         "Norwegian chars: åø" + > >   "" + > > ""; > > myWebView.loadData(xml, "text/html", "UTF-8"); > >

[android-developers] Some bugs of WebView

2009-02-11 Thread yhfudev
I don't know where to put the bug report of APIs. I use WebView to display some pages in my dictionary software. I met some problems with WebView. 1) could not handle the color values When I use the HTML code: the WebView could not handle this type of tags. But can work well. This bug exist b