[android-developers] Re: over my head with data please help

2008-03-29 Thread Megha Joshi
and second and most important: i can't find a way to press the r key for example and the box transfers me to the first city which starts with r This particular issue of not being able to select a list item with a shortcut key, r in your case, is being worked on. It will be fixed in a future

[android-developers] How to add track file in /data/misc/location folder to enable mock gps

2008-03-29 Thread Niket Anand
Hi All, I would appreciate if anyone can help me out of one issue in android app. Presently I am using track file in /misc/location/gps folder to enable mock gps to consider my current location as per track file. Does anyone know how to bundle that in apk file? or how to enable gps with my

[android-developers] Re: GTalk connection very slow?

2008-03-29 Thread Dan Morrill
Hello! With the current implementation, it can indeed take a long time for GTalk to connect to the servers. If you are saying that it takes a long time for the network connection to complete, that may not be unusual. We are working on improving the network performance of the GTalk service in

[android-developers] Re: web browser

2008-03-29 Thread Megha Joshi
Hi, The webview.createsnapshot() function does work as intended.The width of -1 or 0 indicates that the webview's parent view has not yet completed the layout process for your WebView. The best time to take the snapshot of the WebWiew would be when the webpage withing the webview has finished

[android-developers] Which Log API should be used ?

2008-03-29 Thread Derek
Hi, Android comes with android.util.Log and Apache Commons logging. Which one should be used ? Both seems to work and generate traces into LogCat. Please advise. Thanks a lot for your help. --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: canvas outside of onDraw()

2008-03-29 Thread tatagogo
Thanks for your replies. I found the SurfaceView mentioned in another discussion actually, shortly after posting my message earlier as luck would have it! Been implementing it and it seems to be just what is required, which is great! Thanks for your help!. Although now I'm having a problem of

[android-developers] Re: Are you satisfied or disappointed with the level of support from Google, for Android?

2008-03-29 Thread Rui Martins
The biggest problem think is the lack of synchronization, between what is on the docs and what is on code. Which takes us to scavange the forums for extra info, that might have been leaked, like stuff X actually doesn't work as documented. And this steals a lot of development time. But this is

[android-developers] Re: Trouble with View.OnKeyListener

2008-03-29 Thread Rhett
I am having similar problems. This doesn't work for me: public class ExtendedDatePicker extends DatePicker { public ExtendedDatePicker(Context arg0, AttributeSet arg1, Map arg2) { super(arg0, arg1, arg2); this.setOnKeyListener(new OnKeyListener() { public

[android-developers] in API Demo ,Alarm service

2008-03-29 Thread e
in APL Demo,alarm service is show notification in status bar ..when i click on status bar, it cannot show expandedText... how to show expandedText --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Setting the selection color in a ListView

2008-03-29 Thread Jakob Bjerre Jensen
Hi Agus, Thanks. Worked on the spot! Is there also a way to control the select/ focus color of a EditText control? I have tried EditText.setHiliteColor/android:textColorHighlight, but it does not seem to have any effect. Best regards, Jakob Bjerre Jensen On 28 Mar., 18:07, Agus [EMAIL

[android-developers] Re: Are you satisfied or disappointed with the level of support from Google, for Android?

2008-03-29 Thread Jean-Baptiste Queru
(Notice: I'm a Google Software Engineer working on Android). One aspect which I hope is reasonably clear in everybody's minds is that getting devices available is really at the top of the priority list for everyone involved in Android. That's important for the Android team and for the Open

[android-developers] Re: Are you satisfied or disappointed with the level of support from Google, for Android?

2008-03-29 Thread AndrewF
Thanks J, that is an excellent explanation. Good to know the focus is on getting Android devices into the hands of consumers. While I'd love to see more SDK improvements (like everyone else), without actual devices out there, our dev work isn't going anywhere. -Andrew Jean-Baptiste Queru

[android-developers] Re: Creating a Mock Location Provider

2008-03-29 Thread Chris D
Megha, Will that new mock provider reside in your apk? I ask specifically to understand if I'll have to find a way to include a mock provider in my submission. If it will not be there, will the judges use the adb shell to make the directory? Thanks, Chris On Mar 12, 7:54 pm, Megha Joshi

[android-developers] Re: over my head with data please help

2008-03-29 Thread dr123
i did it with digit's suggestion xmlrpc and a few characters to narrow the search. thanks for the support ps this spinner fix is very important...you hear me google guys?:) On 29 Μαρ, 07:51, Megha Joshi [EMAIL PROTECTED] wrote: and second and most important: i can't find a way to press the

[android-developers] Re: Relative Layout for a List Item

2008-03-29 Thread Harsh Jain
bump... On Sat, Mar 29, 2008 at 7:48 AM, Harsh Jain [EMAIL PROTECTED] wrote: I had be really surprised. Can someone from google confirm ? regards, harsh On Sat, Mar 29, 2008 at 6:50 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Your xml looks ok, but I guess that the implementation

[android-developers] Re: Which Log API should be used ?

2008-03-29 Thread Zach Hobbs
android.util.Log -- Zach Hobbs HelloAndroid.com Android OS news, tutorials, downloads On Saturday 29 March 2008 07:10:23 Derek wrote: Hi, Android comes with android.util.Log and Apache Commons logging. Which one should be used ? Both seems to work and generate traces into LogCat.

[android-developers] Re: Special Actions for IGTalkSession.sendDataMessage()

2008-03-29 Thread jtaylor
Dan, I think I have to explain my problem better. I think I mean a Custom Action? I am using the method IGTalkSession.sendDataMessage(). I want this method to work. :) As far as I can tell, the second parameter needs an Intent which broadcasts an action. It's not an explicit call to a class

[android-developers] Re: Special Actions for IGTalkSession.sendDataMessage()

2008-03-29 Thread jtaylor
Interesting! ..thanks Peli - Juan On Mar 29, 2:17 pm, Peli [EMAIL PROTECTED] wrote: Try this: public static final String YODEL_ACTION = com.jtaylor.action.YODEL; Intent intent = new Intent(this.YODEL_ACTION); (It is really just a string that you can define as you like). Peli On Mar

[android-developers] Re: Special Actions for IGTalkSession.sendDataMessage()

2008-03-29 Thread Peli
And since everybody can define their intents as they like, applications will likely not work well with each other... unless they use OpenIntents ;-) http://www.openintents.org/en/ Peli On Mar 29, 7:47 pm, jtaylor [EMAIL PROTECTED] wrote: Interesting! ..thanks Peli - Juan On Mar 29, 2:17

[android-developers] Re: Special Actions for IGTalkSession.sendDataMessage()

2008-03-29 Thread Peli
And since everybody can define their intents as they like, applications from different developers will likely not work well with each other... unless they use OpenIntents ;-) http://www.openintents.org/en/ Peli On Mar 29, 7:47 pm, jtaylor [EMAIL PROTECTED] wrote: Interesting! ..thanks Peli

[android-developers] Re: Relative Layout for a List Item

2008-03-29 Thread Harsh Jain
This is the xml file for the ListActivity ?xml version=1.0 encoding=utf-8? ListView xmlns:android=http://schemas.android.com/apk/res/android; android:id=@android:id/list android:layout_width=fill_parent android:layout_height=fill_parent / All I missed in above email was an additional

[android-developers] Re: Emulator crashing constantly on Windows Vista

2008-03-29 Thread Digit
can you describe more precisely what you mean by crash abruptly ? do you have some sort of error dialog from Windows which tells you the cause of the crash, for example ? what does the Applications event log records on your machine ? On Sun, Mar 23, 2008 at 3:04 PM, [EMAIL PROTECTED] [EMAIL

[android-developers] Re: Relative Layout for a List Item

2008-03-29 Thread Harsh Jain
Ok, let me make a simple test case for this. Right now my code depends a lot on other pieces, so it would be really hard for you to debug that way. Harsh On Sun, Mar 30, 2008 at 3:50 AM, Dan U. [EMAIL PROTECTED] wrote: I went ahead and just tried your xml outside of a listview. It does

[android-developers] Re: Disabling Chat Notifications.

2008-03-29 Thread xingye
remove the gtalk simple from apidemos? On 3月30日, 上午5时40分, Harsh Jain [EMAIL PROTECTED] wrote: Hi, I really really need to disable them. Has anyone been able to get the provider id for GTalk ? Regards, harsh --~--~-~--~~~---~--~~ You received this message

[android-developers] Re: canvas outside of onDraw()

2008-03-29 Thread Steve Oldmeadow
Although now I'm having a problem of not being able to receive onKeyDown messages for some reason! Probably because I need to check input during my thread. any ideas/thoughts? You need to make the SurfaceView focusable. I do this in the Activity: myView.setFocusable(true);

[android-developers] Is there more information about Syncable and android.content.SyncAdapter?

2008-03-29 Thread Fred Janon
Is there some general information about the synchronization feature in general and what we need to implement to get it working? I'd like to sync some content from a content provider with other devices. Thanks Fred --~--~-~--~~~---~--~~ You received this message

[android-developers] Is AnimationSet really buggy?

2008-03-29 Thread Dan U.
I've looked through the group and the bug tracker for problems with animations. I know there are apparently some issues with certain methods not working in various Animation classes, but I don't think they related to the problems I have. I'm trying to make a pulsing animation. Basically it does