[android-developers] too bad this forum is now useless due to spam

2017-03-01 Thread CasaDelGato
Sure would be nice if new users were moderated, as this forum is now useless. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[android-developers] Is it possible to make a bluetooth connection with no user intervention?

2017-02-25 Thread CasaDelGato
I'm working on an app that will talk to certain pieces of hardware via bluetooth. The app will know the bluetooth password for each hardware device, and know which one you are currently near. So, even if the phone has never made a connection to a specific device before, it is possible to have

[android-developers] Animation stops timer (newbie alert!)

2010-12-23 Thread CasaDelGato
I'm starting to play with doing some simple animations. I have one where I want a sound and animation to play every X seconds after a button is pressed. So I set it up like this: private ScheduledThreadPoolExecutor threadRunner = new ScheduledThreadPoolExecutor(

[android-developers] Android SDK installer can't find Java

2010-12-19 Thread CasaDelGato
I'm running Win 7 x64. I just downloaded the latest Android SDK installer - installer_r08-windows.exe When I run it, it tells me that I don't have the Java SDK installed. I do. I even re-installed it to make sure. It still can't find it. Suggestions? -- You received this message because you

[android-developers] Calling Tomcat server API's from Android app

2010-09-03 Thread CasaDelGato
Okay, I'm rather new to this and haven't been able to find a how to. We have a tomcat server running several Spring framework applications. I've written code for a desktop Spring Framework app to use the API's we've defined. That's easy. What I'm trying to figure out is how I can call those

[android-developers] Prebuilt AVD files?

2010-09-03 Thread CasaDelGato
Is there any place where I can get AVD files to match various models of phone? -- 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 To unsubscribe from this group, send

[android-developers] Re: Calling Tomcat server API's from Android app

2010-09-03 Thread CasaDelGato
On Sep 3, 8:25 am, Frank Weiss fewe...@gmail.com wrote: Is this a client-server architecture? What Tomcat/JEE Servlet APIs do you want to call in the Android app? Client-Server - yes. I want my Android app to call several of the server API's we've created. These are provided by the .war file

[android-developers] Re: Calling Tomcat server API's from Android app

2010-09-03 Thread CasaDelGato
On Sep 3, 8:35 am, Frank Weiss fewe...@gmail.com wrote: I wonder if we are on the same page with client-server. Anyway, maybe an example of an API you want to use would help clear things up. Yeah, terminology problems can be fun. (NOT!) We have Tomcat running on a server machine at the

[android-developers] Re: Calling Tomcat server API's from Android app

2010-09-03 Thread CasaDelGato
On Sep 3, 8:53 am, Frank Weiss fewe...@gmail.com wrote: That makes more sense. What is the class of the service object? I'd like to look at what Spring packages you are using. There are a few solutions that come to mind. 1) Find a Dalvik JAR of the client library for that Spring service

[android-developers] onEditorAction and requestFocus()

2010-09-01 Thread CasaDelGato
I have a case where there is an EditText field the user enters something into, then presses the Enter key. In the onEditorAction() method, I do some validation, and if it's not a valid input, I want to put the focus back on the EditText field. I've found that using .requestFocus() won't work -