[android-developers] Re: ProgressBar in Webview

2009-01-18 Thread Chris Chiappone
isappears? > > > > On Jan 16, 4:29 pm, "Chris Chiappone" wrote: > > Is there an easy way to show a indeterminate progressBar ontop of a > > webview. I can create a progress bar but the webview shows up below it. > > > > Thanks > > > -- ~

[android-developers] ProgressBar in Webview

2009-01-16 Thread Chris Chiappone
Is there an easy way to show a indeterminate progressBar ontop of a webview. I can create a progress bar but the webview shows up below it. Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] Re: Android T-Mobile "Hotspot" (WiFi) Calling Support

2008-10-12 Thread Chris Chiappone
Some one should be able to write it. On Sun, Oct 12, 2008 at 12:16 AM, Robert H <[EMAIL PROTECTED]> wrote: > > Currently T-Mobile offers WiFi calling through a limited number of > phones (including Blackberry Curve) for around $10 a month. This is a > great feature and really allows customers to

[android-developers] Re: polite request for better error messages

2008-10-09 Thread Chris Chiappone
Wrap the issue in a try catch block and log the exception. You'll get much more detailed info. On Wed, Oct 8, 2008 at 4:32 PM, Jason Proctor <[EMAIL PROTECTED]> wrote: > > dear google, any chance of better error messages from the android > classes? usually, the java frameworks have nice develope

[android-developers] Re: Porting iPhone application to Google Phone using Android

2008-10-02 Thread Chris Chiappone
Its probably easier to completely rewrite the program in java, thats what I had to do. Java is a bit more simple to deal with also. ~chris On Thu, Oct 2, 2008 at 8:18 AM, Nikkelitous <[EMAIL PROTECTED]> wrote: > > Well there is always the possibility if you really want to. The > problem is tha

[android-developers] Re: changing path r.java

2008-10-01 Thread Chris Chiappone
I was trying to think of a way to solve this also. Basically if you extend R.java somewhere else then just reference your new subR.java class and it would work. But you would still need to have the super class in the the main packaged declared in the manifest. ~chris On Wed, Oct 1, 2008 at 3:3

[android-developers] Re: How to load html file from sdcard to WebVeiw

2008-10-01 Thread Chris Chiappone
Yeah that should be relatively simple. List the contents of the SDCard and find your file. Then create a WebView and use the loadData() method to load the data as a string. ~chris On Wed, Oct 1, 2008 at 3:08 PM, Billsen <[EMAIL PROTECTED]> wrote: > > Hi, > > Is it possible to load html file in

[android-developers] Re: ADT 0.8.0 Eclipse plugin download taking FOREVER

2008-09-24 Thread Chris Chiappone
Yeah im having the same issue, actually seems to be frozen up. On Wed, Sep 24, 2008 at 2:16 PM, blindfold <[EMAIL PROTECTED]> wrote: > > The ADT plugin can be downloaded and handled manually via > > http://code.google.com/android/adt_download.html > > but apart from ADT, yes, Ganymede is for me t

[android-developers] Re: WebView

2008-09-08 Thread Chris Chiappone
I wondering the same thing. 2008/9/7 dai <[EMAIL PROTECTED]>: > > Hi...somebody knows the way to keep web surfing on WebView > component..? > Does WebView allow to show web page at first so far? > > Thanks in advnace > > On 9月7ζ—₯, 午後5:53, "Dai Odahara" <[EMAIL PROTECTED]> wrote: >> hi I mean that I

[android-developers] Re: Using the ItemizedOverlay and OverlayItem

2008-09-04 Thread Chris Chiappone
erlay items fields ? > > On Sep 3, 12:09 pm, Peter Stevenson <[EMAIL PROTECTED]> wrote: >> Chris Chiappone wrote: >> > Marcel, >> >> > Thanks for that seems to work as you described. The only thing that >> > doesn't seem right is the w

[android-developers] Re: Using the ItemizedOverlay and OverlayItem

2008-09-02 Thread Chris Chiappone
Marcel, Thanks for that seems to work as you described. The only thing that doesn't seem right is the way the map draws the markers shadow. Any idea on how to correct that. Thanks. On Mon, Sep 1, 2008 at 2:03 PM, marcel-182 <[EMAIL PROTECTED]> wrote: > > Hi everyone, > > I finally got this th

[android-developers] Re: Using the ItemizedOverlay and OverlayItem

2008-08-28 Thread Chris Chiappone
foWindowOffsetY + TEXT_OFFSET_Y, mTextPaint); >> } >> >> super.draw(canvas, mapView, shadow); >> } >> >> /* FIXME manual draw related function */ >> /** @return text width in pixels that the text paint will use to >> draw text */ >> p

[android-developers] Re: Using the ItemizedOverlay and OverlayItem

2008-08-27 Thread Chris Chiappone
Same problem here, i converted code normal overlay code that worked in order to use the "recommended" ItemizedOverlay. Can anyone confirm that this is a bug or are we just doing something wrong. Thanks. On Tue, Aug 26, 2008 at 9:52 AM, Guillaume Perrot <[EMAIL PROTECTED]> wrote: > > Hi, > I hav

[android-developers] Re: Image Button?

2008-08-20 Thread Chris Chiappone
Not sure if this is the best way but it seems to work fine for what you want to do. I basically set the Button background image in the layout XML first. Then set up custom listeners (touch, click, onFocus) that call the following method that replaces the background image with another background i