[android-developers] Re: use of Handler.post

2008-04-26 Thread Dan U.
I think what Hielko said still applies. Try experimenting a bit with it. If you get stuck, just post another message. On Apr 26, 2:35 pm, WildLuka <[EMAIL PROTECTED]> wrote: > follow the thread link at the beginning of my first post ... it's all > there > > On Apr 26, 11:14 pm, Hielko <[EMAIL PRO

[android-developers] Re: Emulator Clock gives incorrect time

2008-04-26 Thread Dan U.
Perhaps it's this: http://groups.google.com/group/android-developers/browse_thread/thread/8b83c87c42152301 If so, I don't think there's a fix out for it yet. On Apr 26, 5:33 pm, hitsu_g <[EMAIL PROTECTED]> wrote: > I have had the same problem... > > On Apr 27, 8:25 am, Todd <[EMAIL PROTECTED]>

[android-developers] Re: Emulator Clock gives incorrect time

2008-04-26 Thread hitsu_g
I have had the same problem... On Apr 27, 8:25 am, Todd <[EMAIL PROTECTED]> wrote: > This problem has been bugging me for a long time and I just can't > figure it out. No matter what I do my emulator clock always shows my > time +7:00. > > I am on the West Coast and my system time (Windows XP) is

[android-developers] Emulator Clock gives incorrect time

2008-04-26 Thread Todd
This problem has been bugging me for a long time and I just can't figure it out. No matter what I do my emulator clock always shows my time +7:00. I am on the West Coast and my system time (Windows XP) is set to GMT -8:00 but for some reason the emulator always sets the time to GMT -1:00. I am as

[android-developers] Re: use of Handler.post

2008-04-26 Thread WildLuka
follow the thread link at the beginning of my first post ... it's all there On Apr 26, 11:14 pm, Hielko <[EMAIL PROTECTED]> wrote: > I'm not sure what problem you exactly want to solve. If you want a > service that is running in it's own thread you can simple create a > class that extends Service

[android-developers] Re: use of Handler.post

2008-04-26 Thread Hielko
I'm not sure what problem you exactly want to solve. If you want a service that is running in it's own thread you can simple create a class that extends Service and implements runnable (and in the onCreate of the service you create the thread): so what's the problem? On 26 apr, 22:49, WildLuka <[

[android-developers] Re: use of Handler.post

2008-04-26 Thread WildLuka
supposing you have a service with an certain number of methods and the service is to run in its own thread ... how would you do it ? On Apr 26, 10:41 pm, "Dan U." <[EMAIL PROTECTED]> wrote: > If you notice the api docs say that creating a Handler associates it > with the current thread. Probably

[android-developers] Re: use of Handler.post

2008-04-26 Thread Dan U.
If you notice the api docs say that creating a Handler associates it with the current thread. Probably you create your Handler instance while setting up the UI? That should mean the UI thread is what it uses when you use your Handler. That would explain why you have a frozen UI. Quite often a Hand

[android-developers] use of Handler.post

2008-04-26 Thread WildLuka
hello there, I have been trying to provide an answer to one of my own questions, you can see it here: http://groups.google.com/group/android-developers/browse_thread/thread/72f5bb4b7bf41735 so I have created a service an inner class that extends Handler. here is the class: private class

[android-developers] Re: How to communicate between two android devcies?

2008-04-26 Thread John P.
I was able to connect two emulators via TCP. The key is redirecting the emulator's localhost to a port on the PC. The original poster who explained this is Digit. Search for his ID and read his previous posts, or search the forum for "UDP" or "TCP". On Apr 22, 5:56 am, Pierre <[EMAIL PROTECTED

[android-developers] Re: Masked EditText

2008-04-26 Thread John P.
You can set various input types by using predefined XML attributes, or making a custom one. The predefined types may fulfill your needs, specifically android:digits. As for the date, I couldn't find the XML version, but you could do is programatically by myEditText.setInputMethod(myInputMethod)

[android-developers] Re: how to access mobile web app on local network

2008-04-26 Thread John P.
Can you access any websites? Just trying to narrow down the problem: either something with your intranet or your proxy settings. If you can't access anything, then consider looking into your proxy settings. Search the group and you'll find previous discussions. On Apr 25, 12:59 pm, WRM <[EMAIL

[android-developers] Re: Do we have any functionalities in Android to intercept calls and SMS

2008-04-26 Thread jcmb
I have a simpler version of that tutorial up on my wiki: http://code.google.com/p/android-for-gods/wiki/SMSHowTo On Apr 26, 7:34 am, drewski <[EMAIL PROTECTED]> wrote: > For the SMS question:http://www.helloandroid.com/node/159has a > tutorial where a received SMS message is intercepted and proce

[android-developers] Regarding Marketing and Distribution for Games

2008-04-26 Thread André
As someone very interested in using the Android Mobile Platform for Online Gaming, I was wondering where one should look for Marketing and Distribution resources. Thanks in advance. André --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] Regarding Marketing and Distribution for Games

2008-04-26 Thread André
As someone very interested in using the Android Mobile Platform for Online Gaming, I was wondering where one should look for Marketing and Distribution resources. Thanks in advance. André --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] Re: Do we have any functionalities in Android to intercept calls and SMS

2008-04-26 Thread drewski
For the SMS question: http://www.helloandroid.com/node/159 has a tutorial where a received SMS message is intercepted and processed by a custom program. Getting it running was really straightforward. Page 2 of the tutorial is the one you want. I am not sure about intercepting messages that are bei

[android-developers] Re: How to compute the size of a string in pixel

2008-04-26 Thread Diego Pino
Path.computeBounds can help you to get the Rect that surrounds a Text paint.getTextPath(text, 0, text.length(), x, y, path); path.computeBounds(rect, false); br --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Androi

[android-developers] Re: Calling SubActivity using URI

2008-04-26 Thread Diego Pino
Hello, If you are using your own ContentProvider I think you should add it also to your AndroidManifest.xml file. For instance, Then, check that in the implementation of your provider, more precisely in the method getType(URI), you successfully are able to translate your URIs (content://com.te

[android-developers] Re: How to draw Bitmap outside of onDraw()

2008-04-26 Thread Diego Pino
Consider using SurfaceView instead of a View as well. >From a SurfaceView you can get access to the underlying Canvas by SurfaceView.getHolder().lockCanvas(), and do your drawing there. Then, release you carnvas by unlockCanvas() when you are done. br --~--~-~--~~~---