[android-developers] Seeding a Picasso Image Cache

2013-12-08 Thread Evan Ruff
Hey Guys, I was wondering if anyone had any information, examples or tips about how to seed the Picasso image cache. I'd like to include a number of images in an asset bundle then load those into the Picasso Cache so that I can seamlessly download/dispay all the images without having to create

[android-developers] Nexus 5 Compatibility

2013-11-10 Thread Evan Ruff
Hey Guys, Just updated my application and noticed that the Nexus 5 isn't on the list of compatible devices. Could someone point me in the direction of what changes I need to make to the manifest to get it to show up? Thanks, E -- You received this message because you are subscribed to the

[android-developers] Re: Multi-Page Form with Fragments and Tabs

2013-02-22 Thread Evan Ruff
So I ended up implementing this by putting the switching logic in onBackPressed(); E On Thursday, February 14, 2013 6:28:54 AM UTC-5, Evan Ruff wrote: Hey guys, I was hoping someone could give me a little insight as to how I can make my multi-page form work a little better. Currently

Re: [android-developers] Re: Android AppEngine SSL Weirdness

2013-02-22 Thread Evan Ruff
) at org.apache.commons.io.IOUtils.copy(IOUtils.java:1357) at org.apache.commons.io.IOUtils.toByteArray(IOUtils.java:361) Going to AppEngine... anyone else seeing this? E On Friday, February 8, 2013 11:56:58 AM UTC-5, Evan Ruff wrote: Hey hey! It happens intermittently on Nexus 7s and Motorola Droid 4 running 4.0.4.I

[android-developers] Multi-Page Form with Fragments and Tabs

2013-02-14 Thread Evan Ruff
Hey guys, I was hoping someone could give me a little insight as to how I can make my multi-page form work a little better. Currently, each page (two pages) on my form is a separate fragment. I use the ActionBar Tabs to display the pages and then a Next button in each page that switches the

[android-developers] Android AppEngine SSL Weirdness

2013-02-08 Thread Evan Ruff
Hey guys, I was wondering if anyone had been experiencing intermittent exceptions when securely connecting to an AppEngine servlet through the DefaultHttpClient? I've occasionally been getting execptions about certificates, closed connections, host unknown, etc... but only sometimes. I am

Re: [android-developers] Re: Android AppEngine SSL Weirdness

2013-02-08 Thread Evan Ruff
are you testing on? Do you get that error also on newer ones? On Friday, February 8, 2013 7:30:19 AM UTC-6, Evan Ruff wrote: Hey guys, I was wondering if anyone had been experiencing intermittent exceptions when securely connecting to an AppEngine servlet through the DefaultHttpClient? I've

Re: [android-developers] Re: Bad View Behavior with Changing ListViews

2012-12-31 Thread Evan Ruff
notifyDataSetChanged until the new cursor is loaded. On Wednesday, December 19, 2012 9:23:25 PM UTC-6, Evan Ruff wrote: Hey guys, I'm having some funny issues with my ListViews. Generally, I have a ListView activity where the list view takes up the entire activity. The list views are using

[android-developers] Bad View Behavior with Changing ListViews

2012-12-19 Thread Evan Ruff
Hey guys, I'm having some funny issues with my ListViews. Generally, I have a ListView activity where the list view takes up the entire activity. The list views are using a custom SimpleCursorAdapter and are using the supportLoaderManager to load in the data. The Loaders are connected to

[android-developers] Re: Error: SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length - very annoing

2012-11-29 Thread Evan Ruff
I am getting these issues as well. Did you ever find the solution to the problem? Thanks, E On Tuesday, October 30, 2012 5:24:07 AM UTC-4, Giuseppe wrote: Starting SDK 4.1.1 I have continuously the error: E/SpannableStringBuilder(1068): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero

[android-developers] Re: Starting with Loaders, Beginner Questions

2012-11-16 Thread Evan Ruff
14, 2012 9:38:15 PM UTC-5, Evan Ruff wrote: Hey guys, I'm beginning to bring my application out of the dark ages (API 7) up to the more recent stuff and I'd like to migrate from my current Singleton data provider to something like the Loader paradigm. I had a couple of question. Currently

[android-developers] Starting with Loaders, Beginner Questions

2012-11-14 Thread Evan Ruff
Hey guys, I'm beginning to bring my application out of the dark ages (API 7) up to the more recent stuff and I'd like to migrate from my current Singleton data provider to something like the Loader paradigm. I had a couple of question. Currently, when the Application starts, I pull all of my

[android-developers] Re: Launch Behavior Issues, 2.3 vs. 4

2012-11-13 Thread Evan Ruff
the help from the group! I thought I had checked everything but everyone's input helped me really zero in and fix the issue. Thanks guys! E On Tuesday, November 6, 2012 7:59:55 PM UTC-5, Evan Ruff wrote: Hello all, I'm having some very frustrating and confusing issues getting my application

Re: [android-developers] Launch Behavior Issues, 2.3 vs. 4

2012-11-07 Thread Evan Ruff
intact: the debugger will still be attached, the breakpoints set. -- K 2012/11/7 Evan Ruff evan...@gmail.com javascript: Hello all, I'm having some very frustrating and confusing issues getting my application to function as it has been. My application uses an Application object to hold

Re: [android-developers] Launch Behavior Issues, 2.3 vs. 4

2012-11-07 Thread Evan Ruff
, will report back with findings if anything changes. E On Wednesday, November 7, 2012 2:12:08 PM UTC-5, Evan Ruff wrote: Hey Kostya, Thanks for the reply. What are the differences in these flag? Do you have any insight into how to make the production app perform the same Home Launcher

Re: [android-developers] Launch Behavior Issues, 2.3 vs. 4

2012-11-07 Thread Evan Ruff
And... I spoke too soon. When I exported the application and installed it on the device, it goes back to the wonky launch behavior... E On Wednesday, November 7, 2012 2:54:44 PM UTC-5, Evan Ruff wrote: So I found an edge case where I was calling finish() on my Launcher activity

[android-developers] Launch Behavior Issues, 2.3 vs. 4

2012-11-06 Thread Evan Ruff
Hello all, I'm having some very frustrating and confusing issues getting my application to function as it has been. My application uses an Application object to hold a user object. This object is large and is loaded from the database and held in the Application singleton (MyApplication extends

[android-developers] Transporting to Server Problems

2012-07-31 Thread Evan Ruff
Hey guys, I'm having some trouble getting my phone collected data up to my servers. I thought that I was getting old fashioned SocketTimeouts due to the phones having a bad connection or something of the like. After jacking up the timeouts WAY up on the phone (120 seconds) and the timeout WAY

Re: [android-developers] Re: Transporting to Server Problems

2012-07-31 Thread Evan Ruff
: If you are getting a variety of errors, as opposed to a single reproducible error, it could indeed be something goofy with your connection. Why not at least switch to a solid Wifi connection so you can eliminate that possibility? On Tuesday, July 31, 2012 8:35:42 AM UTC-5, Evan Ruff wrote: Hey

[android-developers] Spinner Styling - Am I Nuts??

2012-07-26 Thread Evan Ruff
Hey guys! I have a spinner backed up by an ArrayAdapter in my layout. I'd like to change the look of the spinner button to match the buttons that are next to it. Here is my Spinner xml: Spinner android:id=@+id/location_type_spinner

Re: [android-developers] Spinner Styling - Am I Nuts??

2012-07-26 Thread Evan Ruff
the layout used by your adapter's getView(). -- K 2012/7/26 Evan Ruff evan.r...@gmail.com Hey guys! I have a spinner backed up by an ArrayAdapter in my layout. I'd like to change the look of the spinner button to match the buttons that are next to it. Here is my Spinner xml

Re: [android-developers] Spinner Styling - Am I Nuts??

2012-07-26 Thread Evan Ruff
AND BOOM. That's where I was getting all turned around. Thanks Mark and Kostya! E On Thursday, July 26, 2012 8:56:06 AM UTC-4, Kostya Vasilyev wrote: 2012/7/26 Mark Murphy mmur...@commonsware.com On Thu, Jul 26, 2012 at 8:44 AM, Evan Ruff evan.r...@gmail.com wrote: Thanks

[android-developers] JAVA_HOME Not recognized in Tools?

2011-02-08 Thread Evan Ruff
Hey guys, Not to sound like a grump, but why does \tools\lib\find_java.bat ignore the JAVA_HOME environmental variable? I have having to change my config around just to reference this. E -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] Re: Development Tools Crashing

2011-02-07 Thread Evan Ruff
Xav, I have, ~all the targets since 1.0 installed! Maybe this is breaking everything? I'll remove everything except 1.6 and see if that helps. Also, is there a new version (you mention ADT 10.0). I'm on 9.0, but the Update Manager does not inform me of anything? Thanks for the help! E On

Re: [android-developers] Development Tools Crashing

2011-02-07 Thread Evan Ruff
) is a known Eclipse Helios 3.6SR1 issue. I've written a summary of various workarounds here: http://kmansoft.wordpress.com/category/tools/ The good news is that this is fixed in 3.6SR2, due February 25. -- Kostya 06.02.2011 18:15, Evan Ruff пишет: Hey Guys, I'm having a NPE thrown when I

Re: [android-developers] Re: Development Tools Crashing

2011-02-07 Thread Evan Ruff
Seni, I can verify that I am getting the same behavior. First load it bombs out. Second load it complains about the Theme. Still working on removing the platforms... E On Mon, Feb 7, 2011 at 2:40 PM, Seni Sangrujee s...@fieldteams.com wrote: I don't know if this helps, but I get different

Re: [android-developers] Re: Development Tools Crashing

2011-02-07 Thread Evan Ruff
to enable debug information. -- Tor On Mon, Feb 7, 2011 at 11:45 AM, Evan Ruff evan.r...@hendersonsawmill.com wrote: Seni, I can verify that I am getting the same behavior. First load it bombs out. Second load it complains about the Theme. Still working on removing the platforms... E

Re: [android-developers] Development Tools Crashing

2011-02-07 Thread Evan Ruff
of various workarounds here: http://kmansoft.wordpress.com/category/tools/ The good news is that this is fixed in 3.6SR2, due February 25. -- Kostya 06.02.2011 18:15, Evan Ruff пишет: Hey Guys, I'm having a NPE thrown when I try to edit a layout. I generally happens about 85% of the time

Re: [android-developers] Development Tools Crashing

2011-02-07 Thread Evan Ruff
Also, not sure if I tried this previously, but it seems that now I can get the layout editor if I close the opened XML tab, wait a minute, then reopen. I still get the No theme selected message, but after selecting one it does render properly! E On Mon, Feb 7, 2011 at 6:22 PM, Evan Ruff evan.r

Re: [android-developers] Development Tools Crashing

2011-02-07 Thread Evan Ruff
some work around this for 10.0 so it should be better. Xav On Mon, Feb 7, 2011 at 3:23 PM, Evan Ruff evan.r...@hendersonsawmill.com wrote: Also, not sure if I tried this previously, but it seems that now I can get the layout editor if I close the opened XML tab, wait a minute

[android-developers] Development Tools Crashing

2011-02-06 Thread Evan Ruff
Hey Guys, I'm having a NPE thrown when I try to edit a layout. I generally happens about 85% of the time. If it does not throw the NPE, it says Missing Theme with no assist or layout. The XML editor does still provide assistance if the NPE is not thrown. Additionally, my auto-complete is

[android-developers] Help with GridView, ImageAdapter and Custom Drawable

2010-09-09 Thread Evan Ruff
in the pasted code above) Why does it crash when displaying the second time? Am I fundamentally missing a part of the lifecycle of this object? Any other advice you can give me? Thanks for reading throgh the post! I really appreciate any help I can get! Thanks, Evan Ruff, Atlanta -- You received

[android-developers] ADT Crashing Constantly - Background Image Related

2010-08-12 Thread Evan Ruff
Hey guys, I don't know if this is the right group, but my ADT keeps crashing while editing layout files. I'm not positive, but I think it might have something to do with the background images that I'm attempting to use, as they are not rendered in the preview at all. Is this the appropriate group

[android-developers] Re: ADT Crashing Constantly - Background Image Related

2010-08-12 Thread Evan Ruff
On Aug 12, 12:09 pm, { Devdroid } webnet.andr...@gmail.com wrote: On 12 August 2010 17:48, Evan Ruff evan.r...@gmail.com wrote: Hey guys, I don't know if this is the right group, but my ADT keeps crashing while editing layout files. I'm not positive, but I think it might have something

[android-developers] Re: ADT Crashing Constantly - Background Image Related

2010-08-12 Thread Evan Ruff
Oh forgot to include, that it displays as intended in the emulator. E On Aug 12, 12:09 pm, { Devdroid } webnet.andr...@gmail.com wrote: On 12 August 2010 17:48, Evan Ruff evan.r...@gmail.com wrote: Hey guys, I don't know if this is the right group, but my ADT keeps crashing while

[android-developers] Re: eclipse HELIOS (3.6) Code Assist very slow

2010-08-06 Thread Evan Ruff
After upgrading to Helios, my code assist is dog slow as well. I am currently experimenting with the location of Eclipse (was on D, moving to C) as well as the memory args... E On Jul 8, 7:27 am, gDev sab...@gmail.com wrote: CodeAssistveryslow any soluation for that? -- You received this

[android-developers] Eclipse Helios running SLOW

2010-08-06 Thread Evan Ruff
Hey guys, Just upgraded to 3.6 after this whole Sun/Oracle JVM fix/debacle and I notices that 3.6 EE runs super, duper slow. So slow to the point that code assist is unusable. Here are some changes I made to the config to make it operate a lot better: eclipse.ini: replace the end with this:

[android-developers] More about WakeLocks and Services

2010-05-25 Thread Evan Ruff
Hey all, I was wondering if someone could help me clarify how I can created the following: 1. My application uses AlarmManager to trigger an IntentService 2. IntentService gets a WakeLock 3. IntentService runs all the necessary code 4. IntentService releases WakeLock For an IntentService, Is

[android-developers] Extended Resources Strategy

2010-02-13 Thread Evan Ruff
help and input! Evan Ruff *best optimization tool on the web: http://www.gracepointafterfive.com/punypng/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com

[android-developers] Prevent view from scaling background

2010-02-01 Thread Evan Ruff
Hey guys, I've got a quick question that I can't seem to find the answer too. I have a LinearLayout with fill_parent for both height and width. I set the background to a hires image that is 480x855 in case I encounter a long device. When it goes to put the imagine in the background for both the

Re: [android-developers] Re: Screen Sizes with 1.5, 1.6 and 2.0

2009-11-17 Thread Evan Ruff
, Evan Ruff evan.r...@gmail.com wrote: Hey guys, I've got a quick question about screen size support. Currently, I've got an application that is rockin' along just fine on 1.5 and 1.6. Today the client called and says they want to run on Droid. While I've downloaded the 2.0 SDK, I'm a little

[android-developers] Screen Sizes with 1.5, 1.6 and 2.0

2009-11-13 Thread Evan Ruff
Hey guys, I've got a quick question about screen size support. Currently, I've got an application that is rockin' along just fine on 1.5 and 1.6. Today the client called and says they want to run on Droid. While I've downloaded the 2.0 SDK, I'm a little wary of compiling against it. Will it break

Re: [android-developers] Re: Widget Layout Frustration

2009-11-11 Thread Evan Ruff
Great tip Matt! Thanks for sharing! E On Wed, Nov 11, 2009 at 9:34 AM, Matt Kanninen mathias...@gmail.com wrote: When I'm 2px off I find negative layout margins help immensely. http://developer.android.com/reference/android/view/ViewGroup.MarginLayoutParams.html On Oct 29, 8:40 pm, Evan

[android-developers] Re: Widget Layout Frustration

2009-11-04 Thread Evan Ruff
looks with the Toast ninepatch:http://screencast.com/t/zEyDZr8fnI) It sure seems like if we found the right ninepatch image we'd just have to add the faint shadow to thetextand then we'd be home free. On Oct 29, 10:40 pm, Evan Ruff evan.r...@gmail.com wrote: Hey Guys, I

[android-developers] Re: manually update AppWidgetProvider's onUpdate

2009-11-04 Thread Evan Ruff
I don't know if this is EXACTLY kosher, but I've overriden the onRecieve method in my AppWidgetProvider to look like: @Override public void onReceive( Context context, Intent intent ) { this.view = new RemoteViews( context.getPackageName(), R.layout.widget ); if

[android-developers] Re: Widget Layout Frustration

2009-11-04 Thread Evan Ruff
to change the radius of the background behind the text? etc.) On Wed, Nov 4, 2009 at 1:55 PM, Evan Ruff evan.r...@gmail.com wrote: Susan, I've tweaked it a little bit more and here is where I'm at: http://i243.photobucket.com/albums/ff2/gte619n/widgetLayout.png Pixel for Pixel

[android-developers] Re: Widget Layout Frustration

2009-11-04 Thread Evan Ruff
look like a shortcut. There's no reason to make it look like a shortcut if it's a widget. It's just misleading. On Wed, Nov 4, 2009 at 2:05 PM, Evan Ruff evan.r...@gmail.com wrote: RG, My widget manages the state of a Service running in the background. As you click the widget it starts

[android-developers] Widget Layout Frustration

2009-10-29 Thread Evan Ruff
Hey Guys, I was hoping someone could help me with a home screen widget I'm trying to layout. Basically, I'm trying to layout my widget so it matched a standard home screen application shortcut perfectly. Basically, at this point, I'm about ~2px off and it's driving me crazy! Has anyone gotten

[android-developers] Re: Sending/Receiving Java Objects to Server

2009-09-30 Thread Evan Ruff
email.nex.softw...@gmail.com wrote: You could tryprotocolbuffers...http://code.google.com/apis/protocolbuffers/ On Sep 23, 1:11 pm, Evan Ruff evan.r...@gmail.com wrote: You know, I would be awesome if we could get some sort of native C++ system service to solve this issue. I don't

[android-developers] Weird height of ScrollView

2009-08-10 Thread Evan Ruff
Hey guys, I'm trying to build an interface and I'm having some trouble with the ScrollView component. Basically, no matter what height I set the ScrollView, it only renders 45px high. Even if I set the height to a fixed pixel number (like, 200px) it still only renders into a tiny area of the

[android-developers] Re: Weird height of ScrollView

2009-08-10 Thread Evan Ruff
Doh! That was it! I knew it had to be something simple! Thanks Mark! E On Aug 10, 9:42 am, Mark Murphy mmur...@commonsware.com wrote: Evan Ruff wrote: then a ScrollView with a ListView inside of that You should not put a ListView, or any widget that does its own scrolling

[android-developers] MyLocationOverlay and enableMyLocation()

2009-08-01 Thread Evan Ruff
Hey Guys, I've got a bit of a weird issue here. In my activity, I've got MyLocationOverlay on top of my map and enableMyLocation() in my onResume function. Funny thing is that when I go to run the app in debug, enableMyLocation() returns false. I'm targeting the Google Platform, and my Google

[android-developers] ListView and Selectors

2009-07-28 Thread Evan Ruff
Hey Guys, After going through a bunch of posts here I've got a List Activity with a pair of custom selectors that do the alternating row background thing while maintaining the default selector behavior! The trick was figuring out that in the selector, you had to fire a shape in there instead of

[android-developers] Some Basic Questions

2009-07-21 Thread Evan Ruff
Hey guys, I'm just starting to refine my first Android application and I was wondering if you could help me with a couple of general issues I'm having. 1. State Honestly, I haven't really done too much research here except for looking at the Activity/SubActivity stuff (that's how most of my

[android-developers] Re: WebView + Gears

2009-06-29 Thread Evan Ruff
for all your help. I really appreciate you answering my questions so quickly! I have to say that without your help the learning curve for Android Development would be insurmountable. E On Jun 29, 7:03 am, Mark Murphy mmur...@commonsware.com wrote: Evan Ruff wrote: I was wondering if I can use

[android-developers] Re: WebView + Gears

2009-06-29 Thread Evan Ruff
Murphy mmur...@commonsware.com wrote: Evan Ruff wrote: Huh, that seems kind of like a curious decision. So, in order to use WebView and have persistent storage, I have to use the Javascript - Android Interface specifically, then either expose standard getDB, executeStatement, getResultSet

[android-developers] WebView + Gears

2009-06-28 Thread Evan Ruff
Hey guys, I was wondering if I can use the Gears Toolkit within WebView? I heard a nasty rumor that it was not available in WebView. If Gears is not available, what other storage mechanisms/paradigms are recommended? Thanks! Evan --~--~-~--~~~---~--~~ You

[android-developers] Re: Mouse Events in Browser

2009-06-24 Thread Evan Ruff
Nothing on this? Is it really not possible? E On Jun 17, 6:49 pm, Evan Ruff evan.r...@gmail.com wrote: Hey guys, I was wondering if there was a way to use the mouse events in the Android Browser or in the Webview? I'd like to have mousedown/mouseup but if I could get drag events that would

[android-developers] Re: Mouse Events in Browser

2009-06-24 Thread Evan Ruff
LOL! Touche Mr. Murphy. I was referring to the OnMouseDown, OnMouseUp, OnMouseMove family of events in the browser. Are there Android Browser Equivalents that I'm just missing? Thanks! Evan On Jun 24, 1:16 pm, Mark Murphy mmur...@commonsware.com wrote: Evan Ruff wrote: Nothing

[android-developers] Mouse Events in Browser

2009-06-17 Thread Evan Ruff
Hey guys, I was wondering if there was a way to use the mouse events in the Android Browser or in the Webview? I'd like to have mousedown/mouseup but if I could get drag events that would be great! Anyway to do this? Thanks! Evan --~--~-~--~~~---~--~~ You

[android-developers] Webview: CSS Gradients vs Background Images

2009-05-28 Thread Evan Ruff
Hey guys, I've got a general performance question. In my Webview app, I'm trying to display a div (statically-sized) that is 100px x 200px. The div has a linear gradient that goes the whole 200px. From a performance standpoint, do you believe that it would be fastest to use an optimized 1px

[android-developers] RPC Best Practices

2009-05-25 Thread Evan Ruff
Hey guys, I'm starting my first Android Application and I'm trying to figure out the best way to implement an RPC layer to communicate with my Tomcat server. Basically, I've got POJOs on the Android Client and on the Server. I simply would like to serialize the POJOs on Android, send up an HTTP

[android-developers] Re: RPC Best Practices

2009-05-25 Thread Evan Ruff
Alright, I'm going to give it a shot. I will report back. Thanks! Evan On May 25, 1:21 pm, Mark Murphy mmur...@commonsware.com wrote: Evan Ruff wrote: I've been living over in GWT land for the last year or so, so I guess I've gotten spoiled. GWT's whole object-internet-object magic has

[android-developers] Location of Gears Local DB

2009-05-05 Thread Evan Ruff
hey guys, I was wondering if anyone could direct me to where Gears is putting the local SQL Lite DBs. I can't seem to find it mentioned in the documentation anywhere! Thanks! Evan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Re: Location of Gears Local DB

2009-05-05 Thread Evan Ruff
I was afraid of that :-)! In case anyone else is wondering, I was able to troubleshoot my issue using the tools included in the standard gears SDK distro. There's a database.html file in there that will let you run SQL against any target. I used it to double check my DB. E On May 5, 10:59 am,

[android-developers] Nightly Build for Emulator

2009-04-09 Thread Evan Ruff
Hey guys, I'm a lame-o Windows developer trying to do some Browser specific development targeting Android. I'm having some funny issues with my G1 and my older emulator (WebKit CSS/Layout, etc). I was wondering if any of you Linux guys out there might be so kind as to give me a compiled image of

[android-developers] Re: GWT and the Android Browser

2009-04-09 Thread Evan Ruff
On Apr 8, 10:53 am, Evan Ruff evan.r...@gmail.com wrote: Hey guys, Little stream of conciseness here, sorry if this is a bit long/ disjoined. I was wondering if anyone had done any work withGWTand theAndroid Browser. While I'm getting basic functionality to work, the general speed

[android-developers] Re: Nightly Build for Emulator

2009-04-09 Thread Evan Ruff
That's just want I was looking for. Thanks Al! E On Apr 9, 10:50 am, Al Sutton a...@funkyandroid.com wrote: There have been no checkins I'm aware of since my builds at; http://andappstore.com/AndroidPhoneApplications/sdk/ Regards, Al. --- * Written an Android App? - List it

[android-developers] Re: Nightly Build for Emulator

2009-04-09 Thread Evan Ruff
Hey Al, Sorry to bother you about this, but when I installed your package, I can't seem to get any network access. When I used the regular emulators, I get 3G without problem, but your dist seems to say no connection. Any ideas? Thanks! E On Apr 9, 10:50 am, Al Sutton a...@funkyandroid.com

[android-developers] Web Browser stop Selection

2009-04-06 Thread Evan Ruff
Hello, I am developing a GWT-based application to be used on the Android Platform through the browser. The one big problem that I'm running into is the hijacking of my press-and-hold methodology. Basically, I've got an image that has a timer on it. When you press the button the timer runs