[android-developers] Re: Android Browser plug in

2012-10-29 Thread Anders Rundgren
I wanted the same but have given up on the idea since plugins doesn't exist in Android and have been removed in Windows 8. The currently only useful method seems to use a custom protocol like Google does with market://. If you search stackoverflow you will find example of how you do that. It is

Re: [android-developers] Re: Android Browser plug in

2012-10-29 Thread Michael Banzon
The custom url scheme is actually why I asked what the purpose was. The ability to match an url is also a possibility (like the YouTube app) which makes many normal use cases of browser plugins obsolete (there are still many though). On Mon, Oct 29, 2012 at 1:15 PM, Anders Rundgren

Re: [android-developers] Re: android browser

2012-01-25 Thread Mark Murphy
On Tue, Jan 24, 2012 at 9:26 PM, cindy ypu01...@yahoo.com wrote: Then what is the meaning of following news release: http://androidcommunity.com/android-web-browser-goes-open-source-chrome-incoming-20110823/ The meaning is that you are reading a blog post from a non-developer, rather than

[android-developers] Re: android browser

2012-01-24 Thread cindy
Thank you for the information. Then what is the meaning of following news release: http://androidcommunity.com/android-web-browser-goes-open-source-chrome-incoming-20110823/ Dose it means the open source android browser will get better? Thanks! April On Jan 24, 2:39 pm, Mark Murphy

[android-developers] Re: android browser plug-ins support

2011-11-24 Thread petr.maza...@mautilus.com
Hi Klimek, Can you provide us more information?? Which Android versions we need, some examples, etc. Thanks, STeN On Nov 24, 2:11 pm, Klimek oskarklimkow...@gmail.com wrote: Yes u can create plugins :D Dnia 24 lis 2011 o godz. 04:13 petr.maza...@mautilus.com petr.maza...@mautilus.com

[android-developers] Re: Android browser gets stuck when downloading files

2011-11-07 Thread gjs
Hi, See http://developer.android.com/reference/org/apache/http/package-summary.html Regards On Nov 4, 7:43 am, arh anelr...@gmail.com wrote: I have this very specific request that I need to implement. We are working on an application that lets users attach several different type of files

[android-developers] Re: Android Browser 'Uncaught SyntaxError'

2010-11-24 Thread Greg Taylor
I think it's just standard jQuery. I'll have to check the mobile version out. Thanks! On Nov 23, 2:02 am, Kumar Bibek coomar@gmail.com wrote: Well, seems like a jQuery issue. Which one are you using? I tried the mobile version, and it wasn't working a few days back, while it worked pretty

[android-developers] Re: Android Browser debug question

2010-05-12 Thread ຄຳ
hi Thanks for answer How can I debug that? Turn on USB debugging on the phone, set it to allow external apps, plug it in via USB, install the proper drivers, the run your app from Elipse - your phone should be a target. Deploy it to your phone and debug as usual. I don't use Eclipse for

[android-developers] Re: Android Browser debug question

2010-05-12 Thread Maps.Huge.Info (Maps API Guru)
What I would do first is try loading the page on a desktop with Firefox and Firebug to make sure you have no obvious errors. If it passes this test then try the next suggestion on your device. I believe JavaScript errors from the browser will still show up in the log. All you need is to dump your

[android-developers] Re: Android browser - how to disable the green click animation

2010-04-28 Thread Paul Stanway
Hi, Thanks for the reply much appreciated but I am not sure if this will help, I could be wrong but below is an example of the green click selection area. If you have an android browser visit the following site and try playing the game every so often when you click a big green selection square

[android-developers] Re: Android browser - how to disable the green click animation

2010-04-26 Thread Kumar Bibek
You can customise your buttons to whatever you want. Follow this link. http://tech-droid.blogspot.com/2010/03/custom-buttons-on-android.html Thanks and Regards, Kumar Bibek On Apr 25, 1:49 pm, Paul Stanway pstanw...@gmail.com wrote: Hi, I want to develop a web app that uses HTML, CSS and

[android-developers] Re: Android browser is parsing my XML (KML) document

2009-12-09 Thread Phil V
maybe set the encoding to text/html On Dec 7, 4:39 pm, Raul raul...@gmail.com wrote: Hey Guys- Is there any way to display raw XML in an Android Browser. My XML file is being stripped of all the XML tags, and I need them for my map application to work correctly. Please advise, Raul --

[android-developers] Re: Android Browser - Downloading files with square brackets in the name [ ]

2009-03-03 Thread Alec
As an update i just raised a bug report on the android bug tracker http://code.google.com/p/android/issues/detail?id=2127 On Mar 3, 12:41 pm, Alec alechol...@gmail.com wrote: Hi I noticed recently that i cant download files with square brackets in. For instance i have uploaded two files

[android-developers] Re: Android Browser - Downloading files with square brackets in the name [ ]

2009-03-03 Thread Jean-Baptiste Queru
Indeed. This was fixed in the source code (it's in the cupcake development tree) and the fix will be in a future release. JBQ On Tue, Mar 3, 2009 at 4:02 PM, Alec alechol...@gmail.com wrote: As an update i just raised a bug report on the android bug tracker

[android-developers] Re: Android Browser - Downloading files with square brackets in the name [ ]

2009-03-03 Thread Alec
Sorry if i accidentlt replied to your personal address. When will this release be available to the general userbase, as i am writing an application and using the default browser to let the user browse and download files which will occassionally have square brackets in. Will there be a browser

[android-developers] Re: Android Browser - Downloading files with square brackets in the name [ ]

2009-03-03 Thread Jean-Baptiste Queru
No ETA, sorry. I don't expect that this will be available before cupcake-based releases, though. JBQ On Tue, Mar 3, 2009 at 4:16 PM, Alec alechol...@gmail.com wrote: Sorry if i accidentlt replied to your personal address. When will this release be available to the general userbase, as i am

[android-developers] Re: Android browser is really slow/buggy when clicking on checkboxes

2009-01-16 Thread Andrew Stadler
This is probably better discussed on android-discuss (if interested in talking about the browser) or android-platform (if you're interested in trying to fix it...) See http://source.android.com/discuss for more information. On Fri, Jan 16, 2009 at 12:44 PM, Chister Nordvik cnord...@gmail.com

[android-developers] Re: Android browser?

2008-06-13 Thread Gene Vayngrib
Watch your server log when requests come in and see which was the last served before webkit gets stuck. On our web site (http://neoyou.org) we saw webkit hang on receiving images. On a hunch we configured our http server to close connection on every response and that fixed the problem for now

[android-developers] Re: Android browser?

2008-06-03 Thread Mark Murphy
what is working for you? I could find no real examples of any code using WebView to load a page from the internet. What you have should work fine other than the catch block. My example in my book is similar to your implementation, minus the try/catch block, and using http://commonsware.com as

[android-developers] Re: Android browser?

2008-06-03 Thread maceghost
I'm almost willing to go out on a limb and say that if I don't sleep for more then a second after loadUrl() then the page doesn't show. When I sleep for 1 second, sometimes the page will not show and sometimes the page will draw 1/2 way and then stop. If I sleep for 3 or more seconds, the page

[android-developers] Re: Android browser?

2008-06-03 Thread Mark Murphy
Thank you for your help. So, what is this book you speak of...? _The Busy Coder's Guide to Android Development_. Version 0.9 is available in PDF and Kindle form on the CommonsWare Web site. A more formal announcement is forthcoming. I've modified my code according to your suggestions. I've

[android-developers] Re: Android browser?

2008-06-03 Thread maceghost
It's been strange from the outset. I now know that I can also load http://code.google.com/android; ( seems appropriate ) but only if I have a sleep after the loadUrl(). I'm on M5 SDK. android-sdk_m5-rc15_windows Maybe I should try this on my linux box...or outside of the IDE. On Jun 3, 11:43