[android-developers] Receiving SMS Messages in 1.0?

2008-09-24 Thread Reto Meier
Is it still possible to listen for incoming SMS messages in the latest 1.0 SDK release? The SMS_RECEIVED_ACTION string used to listen for incoming SMS messages seems to have gone missing. It used to be available from the android.provider.Telephony.Sms package, which also seems to have

[android-developers] How can ExpandableListActivity be customized?

2008-09-24 Thread Muthu Ramadoss
What's the default layout ExpandableListActivity (ELA) uses? And what's the id of the list that ELA uses? I've looked at the APIDemos, and the 3 examples just work with the bundled ExpandableListView and the bundled default layout. Any pointers on how to customize/override is welcome. -- take

[android-developers] Test Location Providers in 1.0

2008-09-24 Thread Reto Meier
The ability to create and configure mock location providers that was added in Beta 0.9 doesn't seem available in 1.0. Has this functionality been moved / renamed or has it been dropped entirely for version 1? If the latter, how do we now mock the status and availability of Location Providers?

[android-developers] One G1 for each submitted app for ADC

2008-09-24 Thread arnouf
Hello all developers, When ADC1 results have been announced a lot of people asked to have a Google server access. Now, I think it should be better to receive a G1 to test our application. Below my demand to Google, HTC and T-Mobile allowing to everyone, in all countries :

[android-developers] Re: How can ExpandableListActivity be customized?

2008-09-24 Thread Muthu Ramadoss
Trying to set an empty view for the ExpandableListView with the following code: final TextView textView = new TextView(Results.this); textView.setText(No Results. Please do a Search to see Results.); textView.setWidth(200); textView.setHeight(200); // Tell

[android-developers] Re: Problem when running SoundRecordingAPISample of Megha

2008-09-24 Thread ZIN
can u show me the way to play the .amr format? i can't run it on Android. On Sep 23, 6:04 pm, De San Nicolas Jean Philippe [EMAIL PROTECTED] wrote: sorry,it works 2008/9/23 De San Nicolas Jean Philippe [EMAIL PROTECTED] another question about sound an recording. I've read that the only way

[android-developers] Re: problem port from 0.9 to 1.0... constructor AssetManager() is not visible???

2008-09-24 Thread hackbod
Why are you using that? You should use Context.createPackageContext() to access the assets of other .apks. On Sep 23, 10:46 pm, Wesley Sagittarius [EMAIL PROTECTED] wrote: hi, In SDK 0.9 AssetManager assetManager = new AssetManager(); assetManager.addAssetPath(path); the constructor of

[android-developers] Re: can't access XML resources from classes outside my main (launched) activity

2008-09-24 Thread hackbod
You need to hand your Context (Activity is-a Context) to the other class, which is uses to access resources. On Sep 23, 6:35 pm, gymshoe [EMAIL PROTECTED] wrote: I am having trouble accessing my XML resources from outside my main activity. I suspect this is easy to do, but I am a novice to

[android-developers] Re: scrolling listview loses background color/drawable

2008-09-24 Thread hackbod
The color you have (#000) is solid black. Use # for a completely transparent color. On Sep 23, 9:33 pm, Nickname [EMAIL PROTECTED] wrote: Thank you, butit does NOT fix the problem. Here is what i added to layout xml of the listview:         ...        

[android-developers] Re: Problem when running SoundRecordingAPISample of Megha

2008-09-24 Thread De San Nicolas Jean Philippe
I've not played the .amr from the SOUNDRECORDINGAPISAMPLE. I've converted an .mp3 in .amr with software and try to play it. And it woks. maybe the probleme comes from the recorded .amr 2008/9/24 ZIN [EMAIL PROTECTED] can u show me the way to play the .amr format? i can't run it on Android.

[android-developers] Re: scrolling listview loses background color/drawable

2008-09-24 Thread Tauno T
I'm having the same issue. A ListView is inside of a LinearLayout and the LinearLayout has a semi- transparent background. The background diappears while scrolling the ListView with the mouse. Adding android:cacheColorHint=# to the LinearLayout has no effect. On Sep 24, 11:02 am,

[android-developers] Re: How can ExpandableListActivity be customized?

2008-09-24 Thread Muthu Ramadoss
And you can ExpandableListView the same way as a List: ExpandableListView android:id=@+android:id/list android:layout_width=fill_parent android:layout_height=fill_parent android:layout_weight=1 / On Sep 24,

[android-developers] (documentation) Is there a typo in ViewTreeObserver.dispatchOnPreDraw() ?

2008-09-24 Thread Tauno T
From the dox: ...If a listener returns true, then the drawing pass is canceled and rescheduled It seems to be the opposite. I tried it and if my listener returns true, then the view hierarchy will draw just fine but when my listener returns false, then the hierarchy won't be drawn. Or am I

[android-developers] Re: Receiving SMS Messages in 1.0?

2008-09-24 Thread [EMAIL PROTECTED]
In reply please also include sending SMS capability in 1.0 for background connection to the cloud reasons On Sep 24, 1:15 am, Reto Meier [EMAIL PROTECTED] wrote: Is it still possible to listen for incoming SMS messages in the latest 1.0 SDK release? The SMS_RECEIVED_ACTION string used to

[android-developers] Re: create a calendar in android

2008-09-24 Thread alpesh
hi peterman, my self Alpesh Patel,now a days i m working on android. in which doing,fecility poviding in android mobile of google calendar. but i have problem that in android emulator 9.0 no calendar support is there. so i have a same problem like u. so now i have to build custom calendar in

[android-developers] How to create custom calendar in android

2008-09-24 Thread alpesh
my self Alpesh Patel,now a days i m working on android. in which doing,fecility poviding in android mobile of google calendar. but i have problem that in android emulator 9.0 no calendar support is there. so now i have to build custom calendar in android. so pls if you have solution pls pls

[android-developers] Re: Android 1.0 SDK Released

2008-09-24 Thread LOVEYANG
the 1.0 is Slower than 0.9.my god On Sep 24, 6:09 am, Megha Joshi [EMAIL PROTECTED] wrote: Hi everyone, We're pleased to announce the release of the Android 1.0 SDK, release 1. For full information, please see Dan Morrill's blog post:

[android-developers] Emulator Skins for HTC Dream / T-Mobile G1

2008-09-24 Thread Olaf Encke
Hello Android fans and developers. I just finished building the first HTC Dream/T-Mobile G1 skins for the Android emulator and would like to share them with you. Right now I have done the black version of the phone in portrait as well as in landscape mode. They are tested to work with the latest

[android-developers] How to access the SMS content provider in SDK 1.0_r1

2008-09-24 Thread Ernest
Hi,all The sms API in android.provider.Telephony.Sms is removed from the new SDK.So how an application access the inbox and outbox of the system.I notice that there is a system apk named Mms.apk,it store the inbox sms info,but how could access it by content provider or other ways?Thank you

[android-developers] Re: Receiving SMS Messages in 1.0?

2008-09-24 Thread Reto Meier
please also include sending SMS capability in 1.0 From what I've seen it looks like sending SMS is still supported in 1.0, it's just receiving SMSs that's changed / gone. On Sep 24, 9:57 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: In reply please also include sending SMS capability in 1.0

[android-developers] Re: Emulator Skins for HTC Dream / T-Mobile G1

2008-09-24 Thread arnouf
Good job :) On Sep 24, 9:41 am, Olaf Encke [EMAIL PROTECTED] wrote: Hello Android fans and developers. I just finished building the first HTC Dream/T-Mobile G1 skins for the Android emulator and would like to share them with you. Right now I have done the black version of the phone in

[android-developers] Re: Test Location Providers in 1.0

2008-09-24 Thread Guillaume Perrot
I was wondering too, I had to disable this function from my application... It seems we can only use DDMS or telnet to simulate location now. On 24 sep, 08:34, Reto Meier [EMAIL PROTECTED] wrote: The ability to create and configure mock location providers that was added in Beta 0.9 doesn't seem

[android-developers] Re: How to add button to MediaController?

2008-09-24 Thread Matteo Crippa
MediaController seems to work only with VideoView atm. On 24 Set, 02:14, stef [EMAIL PROTECTED] wrote: Hi, been trying to modify the MediaController widget to add a few custom buttons. I have tried to subclass it and add buttons to the linearlayout before te rewind and after tge fast forward

[android-developers] Re: Where does the emulator look for the SD Card Image File ?

2008-09-24 Thread Ludwig
It works for me on 1.0. I think what you are perhaps seeing is that the DDMS has a bit of a syncing issue with the filesystem. If you close the /sdcard folder and reopen it, file will appear that were previously not visible. Please do not forget to post your questions to the mailing list, not me

[android-developers] Re: create a calendar in android

2008-09-24 Thread Sudha
I am very new to android. I have a small idearather stupid.. I dont know whether it will work or not. Android works on unix..so cant we invoke the unix commands (shell commnads )through android and get the result ? like for creating the calender can we use the cal month year command in unix

[android-developers] Re: Emulator Skins for HTC Dream / T-Mobile G1

2008-09-24 Thread Matteo Crippa
nice work! thanks :) On 24 Set, 09:41, Olaf Encke [EMAIL PROTECTED] wrote: Hello Android fans and developers. I just finished building the first HTC Dream/T-Mobile G1 skins for the Android emulator and would like to share them with you. Right now I have done the black version of the phone

[android-developers] Re: Emulator Skins for HTC Dream / T-Mobile G1

2008-09-24 Thread Olaf Encke
Thank you. I just finished the white portrait version: http://www.android.encke.net/android-emulator-htc-dream-portrait-white.html Happy coding. On 24 Sep., 11:20, arnouf [EMAIL PROTECTED] wrote: Good job :) On Sep 24, 9:41 am, Olaf Encke [EMAIL PROTECTED] wrote: Hello Android fans and

[android-developers] Re: Where does the emulator look for the SD Card Image File ?

2008-09-24 Thread Sudha
sorry Ludwing .. the issue for 1.0 remains same for me I tried it many times closing and re opening the emulator.. is the camera and teh pics in teh picture folder works the same way as in 0.9 ? When I opend the /sdcard/dcim/camera in 0.9 its a folder with a pid file inside But in 1.0 is a

[android-developers] can we invoke the unix or shell commnads in our application

2008-09-24 Thread Sudha
hi I have a stupid idea . is there any way to invoke the shell commnads in the apllication and get the result.. eg.. to get the calender there is no widget in android so can we use the cal month year command in shell to get teh calender ? Please put your responses

[android-developers] Getting android multimodal - org.apache.commons.scxml

2008-09-24 Thread Jakob Sachse
I am very much interested in integrating Android into a multimodal context. I am trying out several approaches to this, one of which is the deployment of org.apache.commons.scxml (a state machine implementation) on android. I have been keen on getting the stop watch example running, it's like

[android-developers] Re: Where does the emulator look for the SD Card Image File ?

2008-09-24 Thread Sudha
in addition to the above mail I tried to pull out the default image coming the camera folder( apperas in the pictures in the emulator) and tried to push teh same back to /sdcar/dcim/camera. now also teh image appreas liek red block and blank screen when selected.. Nothing is happening with the

[android-developers] Replacing Dialer, IM, and SMS Apps

2008-09-24 Thread Reto Meier
In the early days of Android it was suggested that 3rd party developers would be able to replace any of the 'native' Google applications -- including the Dialer, IM client, and SMS application. After having a look at the 1.0 SDK it seems this isn't possible for the first release. Is this the

[android-developers] T-Mobile G1 skin now available for Android Emulator!

2008-09-24 Thread Tea Vui Huang
T-Mobile G1 skin now available for Android Emulator! http://teavuihuang.com/android To install, download and unzip HVGA-P-G1.zip to the Android skin directory, e.g. C:\android-sdk-windows-1.0_r1\tools\lib\images \skins. To run the Android emulator with this T-Mobile G1 skin, enter this on the

[android-developers] Re: My Messages won't get displayed

2008-09-24 Thread Jakob Sachse
deleting cookies helped me. http://groups.google.com/support/bin/answer.py?hl=deanswer=70499 On 24 Sep., 11:30, Jakob Sachse [EMAIL PROTECTED] wrote: I can't post to the group, i sent a mail to the group support regarding this, getting in reply: Direct inquires sent to [EMAIL PROTECTED]

[android-developers] Android V1.0 : DDMS location controls, and telnet geo fix command not working.

2008-09-24 Thread Guillaume Perrot
I tried, like in v0.9 to use the telnet geo command: [EMAIL PROTECTED]:~$ telnet localhost 5554 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. Android Console: type 'help' for a list of commands OK geo fix 0 0 OK Then I openened the menu in the standard map application -

[android-developers] Re: Android V1.0 : DDMS location controls, and telnet geo fix command not working.

2008-09-24 Thread Guillaume Perrot
geo fix works but not with 0 0. DDMS still not working. On 24 sep, 12:09, Guillaume Perrot [EMAIL PROTECTED] wrote: I tried, like in v0.9 to use the telnet geo command: [EMAIL PROTECTED]:~$ telnet localhost 5554 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. Android

[android-developers] Re: Android V1.0 : DDMS location controls, and telnet geo fix command not working.

2008-09-24 Thread Guillaume Perrot
I sometimes see in my logcat: 09-24 10:15:39.239: ERROR/LocationManagerService(58): isProviderEnabled got exception: 09-24 10:15:39.239: ERROR/LocationManagerService(58): java.lang.IllegalArgumentException: provider=network 09-24 10:15:39.239: ERROR/LocationManagerService(58): at

[android-developers] Re: Android V1.0 : DDMS location controls, and telnet geo fix command not working.

2008-09-24 Thread Guillaume Perrot
I made geo fix works with 0 0... I really don't get it... Am I missing something ? On 24 sep, 12:16, Guillaume Perrot [EMAIL PROTECTED] wrote: I sometimes see in my logcat: 09-24 10:15:39.239: ERROR/LocationManagerService(58): isProviderEnabled got exception: 09-24 10:15:39.239:

[android-developers] Re: Receiving SMS Messages in 1.0?

2008-09-24 Thread Cristina
Hi, I do not know if it is the right way, but I have found a way to get the message. Here I include my code to get the SmsMessages. I hope it helps you public class ServerMessagesReceiver extends BroadcastReceiver { static final String ACTION = android.provider.Telephony.SMS_RECEIVED;

[android-developers] Re: location is always latitude 0 longitude 0 altitude 10 in v0.9

2008-09-24 Thread Guillaume Perrot
I retested a en_GB locale on my Ubuntu 8.04 LTS with Android v1.0. OMFG DDMS controls works with that locale ! But how to procude KML files with direction but non mutlti coordinates tags using Google Earth ? I read and tested, multi-coordinates tag is not supported anymore... And google earth

[android-developers] Re: Unable to create an URI for a local sound

2008-09-24 Thread Matteo Crippa
I'm repling you directly here it could be useful for other ppl too... or someone could help us too... As far as I have understood atm there's no way to get android.resource:// to work property, I tested it using an inside browser in my app and it always bring me to a 404 error. Btw using the

[android-developers] Re: Emulator Skins for HTC Dream / T-Mobile G1

2008-09-24 Thread Olaf Encke
And last not least, the white Dream in landscape mode is ready, too. http://www.android.encke.net On 24 Sep., 11:34, Olaf Encke [EMAIL PROTECTED] wrote: Thank you. I just finished the white portrait version:http://www.android.encke.net/android-emulator-htc-dream-portrait-whit... Happy

[android-developers] Re: BufferedReader.readLine() undocumentedly discards #! prefix

2008-09-24 Thread Mark Murphy
Nickname wrote: I just found that BufferedReader.readLine() undocumentedly and silently discards those input lines that starts with #! substring. I checked with java.sun.com documentation and found nothing about #! prefix at all. Is it a bug in Android implementation of BufferedReader

[android-developers] Re: Bitmap issue ...

2008-09-24 Thread Mike Reed
There is no way to write to a bitmap in its native format in 1.0, but you can read the values by calling copyPixelsToBuffer(). This fills out the buffer with whatever the native config is (alpha_8, 565, , ). If you could extend the api post 1.0, what functionality would you like

[android-developers] Re: Receiving SMS Messages in 1.0?

2008-09-24 Thread De San Nicolas Jean Philippe
Hello, I've tried your code but it failed! my application failed. Have you tried and succeed? 2008/9/24 Cristina [EMAIL PROTECTED] Hi, I do not know if it is the right way, but I have found a way to get the message. Here I include my code to get the SmsMessages. I hope it helps you

[android-developers] Re: Getting android multimodal - org.apache.commons.scxml

2008-09-24 Thread Mark Murphy
Janosch wrote: I think this is due to xml-apis.jar; it includes the javax.xml package which isn't fully available in android core. Is there anything I can do, try or fix? I am feeling clueless at this point. Maybe I am trying something impossible. The good news is that the package you are

[android-developers] Re: .android could not be written 2 home

2008-09-24 Thread Guillaume Perrot
Yes, I encountered this problem with v1.0, I resolved it like this : * Close Eclipse * Save your files under .android if you want (Optional) * Remove totally .android (rm -Rf) * Relaunch eclipse - the error message should not appear and android launching will work from eclipse * Restore your

[android-developers] Re: .android could not be written 2 home

2008-09-24 Thread Mark Murphy
Guillaume Perrot wrote: Yes, I encountered this problem with v1.0, I resolved it like this : * Close Eclipse * Save your files under .android if you want (Optional) * Remove totally .android (rm -Rf) * Relaunch eclipse - the error message should not appear and android launching will work

[android-developers] Re: Receiving SMS Messages in 1.0?

2008-09-24 Thread De San Nicolas Jean Philippe
hello, it works,sorry 2008/9/24 De San Nicolas Jean Philippe [EMAIL PROTECTED] Hello, I've tried your code but it failed! my application failed. Have you tried and succeed? 2008/9/24 Cristina [EMAIL PROTECTED] Hi, I do not know if it is the right way, but I have found a way to get the

[android-developers] Re: Receiving SMS Messages in 1.0?

2008-09-24 Thread Cristina
I have just done a text to send a messege to a port using this SmsManager smsManager = SmsManager.getDefault(); short port = 16001; smsManager.sendDataMessage(5556,5554, port, Hola.getBytes(), null, null); I use two emulators, one is launched at 5554 and the other at 5556 and I try to send the

[android-developers] Re: Does getLocationFromName work in 0.9?

2008-09-24 Thread max
Is it true that this has not been fixed for 1.0? On Sep 6, 10:49 pm, Megha Joshi [EMAIL PROTECTED] wrote: You are right, getFromLocationName() with bounding box returns a empty list ...it is a bug...and will be fixed in the next release. 2008/9/6 [EMAIL PROTECTED] [EMAIL PROTECTED]

[android-developers] Re: Problem with Android SDK 1.0 when playing media

2008-09-24 Thread Baonq86
Oh, really ?? I think it's a big error in Android 1.0. :( On Sep 24, 4:55 pm, ZIN [EMAIL PROTECTED] wrote: I copy a file with wma format to sdcard and try opening this media file with Android Music App. But it said that The player can't support this format. (I have already openned this format

[android-developers] Re: Problem when running SoundRecordingAPISample of Megha

2008-09-24 Thread Baonq86
Does anyone record the different format (not .amr) ?? On Sep 24, 3:10 pm, De San Nicolas Jean Philippe [EMAIL PROTECTED] wrote: I've not played the .amr from the  SOUNDRECORDINGAPISAMPLE.  I've converted an .mp3 in .amr with software and try to play it. And it woks. maybe the probleme comes

[android-developers] Re: Getting android multimodal - org.apache.commons.scxml

2008-09-24 Thread Jakob Sachse
Mark Murphy wrote: If that does not clear up your problem, you can try merging the commons.scxml source into your own project's source tree well, basicly thats what i have done so far Janosch wrote: Meanwhile I was turning to the source code of commons.scxml so that i could watch it's unsolved

[android-developers] Re: How to use SmsManager.sendDataMessage() to send the message

2008-09-24 Thread Cristina
I have just done a test to send a binary messege to a port using this code in 1.0 SmsManager smsManager = SmsManager.getDefault(); short port = 16001; smsManager.sendDataMessage(5556,5554, port, Hola.getBytes(), null, null); I use two emulators, one is launched at 5554 and the other at 5556

[android-developers] Re: Problem when running SoundRecordingAPISample of Megha

2008-09-24 Thread De San Nicolas Jean Philippe
hey, I've just tried the sample SOUNDRECORDINGAPISAMPLE, and an error occured: 09-24 15:42:47.059: WARN/ServiceManager(24): Permission failure: android.permission.RECORD_AUDIO from uid=10019 pid=5373 09-24 15:42:47.059: ERROR/AudioFlinger(24): Request requires android.permission.RECORD_AUDIO

[android-developers] Re: v0.9, TabActivity, communicate between tabs with intents.

2008-09-24 Thread Guillaume Perrot
But if my activity in the tab is at the top of the history stack (jump from tab one to itself, yes it's useless, it's just a test), even if its launching mode is singleTop, a new activity is launched full screen. On 22 sep, 10:52, hackbod [EMAIL PROTECTED] wrote: That is behaving as expected --

[android-developers] Re: Getting android multimodal - org.apache.commons.scxml

2008-09-24 Thread Mark Murphy
Jakob Sachse wrote: Mark Murphy wrote: If that does not clear up your problem, you can try merging the commons.scxml source into your own project's source tree well, basicly thats what i have done so far Oh. Sorry, missed that. though, i will try to build the jar as you recommended. Even

[android-developers] Re: Ksoap2 terminology

2008-09-24 Thread sacoskun
If you are planning to consume .NET web services on the server side, here is an article about it. http://java.codeproject.com/KB/mobile/CallWebServiceFromkSOAP.aspx Regards, sacoskun On Sep 24, 5:42 am, amishera [EMAIL PROTECTED] wrote: Hi, I finally figured out how to set the values of the

[android-developers] Re: Problem when running SoundRecordingAPISample of Megha

2008-09-24 Thread De San Nicolas Jean Philippe
I've resolved the problem but I've another one now. Does anyone have read an .amr issued from the audiorecorder? 2008/9/24 De San Nicolas Jean Philippe [EMAIL PROTECTED] hey, I've just tried the sample SOUNDRECORDINGAPISAMPLE, and an error occured: 09-24 15:42:47.059:

[android-developers] ContentHandler.startElement(..) and ContentHandler.endElement(..) won't be called in 1.0 rc1

2008-09-24 Thread Stefan Handschuh
Following scenario: SAXParser saxParser = saxParserFactory.newSAXParser(); XMLReader xmlReader = saxParser.getXMLReader(); xmlReader.setContentHandler(handler); xmlReader.parse(someImputStream); where handler implements ContentHandler.

[android-developers] Re: BufferedReader.readLine() undocumentedly discards #! prefix

2008-09-24 Thread Nickname
Sorry. I want to recall this false bug report. The issue is not there. It is a problem of my logging code ^_^ On Sep 24, 4:12 am, Mark Murphy [EMAIL PROTECTED] wrote: Nickname wrote: I just found that BufferedReader.readLine() undocumentedly and silently discards those input lines that

[android-developers] Mock Location Providers in 1.0

2008-09-24 Thread Cristina
Hi! I have downloaded SDK 1.0 this morning, so I have tried to migrate some code I have to this version. When trying to migrate MockLocationProvider I found that some methods have dissapeared from LocationManager: setTestProviderEnabled addTestProvider It seems that it not possible to create a

[android-developers] qemu emulator flag not supported anymore in the 1.0 SDK?

2008-09-24 Thread Cheryl Sedota
In the 1.0 SDK, trying to run: emulator.bat -qemu -m 256 on Windows XP does not work - I get this error: w: invalid option -- '-qemu' This used to work in the beta (0.9) SDK and the emulator's usage hint in the 1.0 SD indicates that the option is valid: -qemu args... pass

[android-developers] Re: Mock Location Providers in 1.0

2008-09-24 Thread Reto Meier
Unfortunately I don't have a good answer for you, but we've been discussing the same question here: http://groups.google.com/group/android-developers/browse_thread/thread/7005933e731de0f3# Professonal Android Application Development

[android-developers] Re: Test Location Providers in 1.0

2008-09-24 Thread Stefan Handschuh
The test-location-provider-thing was unnecessary form the start. You have to do just one thing: implement a service that continiously updates you current location. Thats all. On 24 Sep., 11:21, Guillaume Perrot [EMAIL PROTECTED] wrote: I was wondering too, I had to disable this function from

[android-developers] android:label

2008-09-24 Thread dai
Hi, are we allowed to change android:label of AndroidManifest.xml via program dynamically? Thank you so much --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Test Location Providers in 1.0

2008-09-24 Thread Reto Meier
That might force the emulator to turn on the GPS (this was insufficient for me in 0.9, I still needed to enable and activate the GPS provider in code first). I haven't had a chance to test in 1.0 yet. Either way, it still only covers part of the problem. The test-location-provider-thing also

[android-developers] Re: Mock Location Providers in 1.0

2008-09-24 Thread Ludwig
I do not have a problem playing GPX files from DDMS and my code continues to work ok with 1.0. The only change required was to remove the calls to the two methods you mention when subscribing to location updates. (I am running on Vista, just in case this is a platform issue) Ludwig 2008/9/24

[android-developers] Re: Developing Wi-Fi applications in the emulator

2008-09-24 Thread Ilya G.
Hello Guys, have you already tried the Wifi capabilities of the new release (android-sdk-windows-1.0_r1)?! Have you managed to enable the Wifi in the emulator by calling setWifiEnabled(true) ? The call of the isWifiEnabled()-method returns false... any ideas?! Best regards, Ilya.

[android-developers] Re: Test Location Providers in 1.0

2008-09-24 Thread Joe Erickson
That looks to be the case. It never made sense to me that we would have TestProvider code all through the app anyway. To test Location aware apps now, don't do anything special in your code (code it like you would for a real production application), but in Eclipse, open the Emulator Control

[android-developers] Physical Device Keypad Events.

2008-09-24 Thread Yorgen Valune
Hi, Does someone know how to send events to keypad of an Android physical device (a real device) ? if so, can you please publish this part of the code (I'm willing to simulate press-key during my application)? 10x Yorgen Valune --~--~-~--~~~---~--~~ You

[android-developers] Devices for testing?

2008-09-24 Thread hyphz
Hi, Will there ever be a way of getting hold of a G-1, or another Android phone, just for application testing? It would seem very awkward to be required to pay a monthly fee to T- Mobile, especially if it is not for actual use as a phone.. Thanks!

[android-developers] Re: Market Place

2008-09-24 Thread Joe Erickson
They also seemed to imply during the presentation that the App Market would only accept free apps at first. Any idea on when they'll start allowing for pay apps? How the Market charge the user? (Charge on the cell bill or via Google Checkout?) On Sep 23, 7:05 pm, Mark Murphy [EMAIL PROTECTED]

[android-developers] G1 for developers in Europe

2008-09-24 Thread Octavian Voicu
Hello, I was wondering, is there any way for developers in Europe to get their hands on T-Mobile G1 in October? I understand G1 will be available in UK in November, but other countries have to wait until 2009. There should be a special offer for developers so that they can buy it online from

[android-developers] Attach a webcam to the emulator

2008-09-24 Thread Christian Wiesbauer
Hi, I want to know is it possible to hook a webcam to the new emulator in Android 1.0? If so, does anybody know how this work? Best regards, Christian Wiesbauer --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] IPC (by domain socket) between Android's LocalSocket and Linux kernel's PF_LOCAL socket

2008-09-24 Thread Gary Wang
Dear all, I try to create the communication between Android Application and Linux kernel Process by IPC domain socket (using abstract namespace mode), but when I try to creaste new LocalSocketAddress, it always casued the exception lsited below, : E/me ( 372): java.io.IOException:

[android-developers] Access to GSM Modem

2008-09-24 Thread Matthew Smith
Hello, are there any examples how to access the phones GSM modem and is it possible to place a DataCall using Android? I would like to write an application which creates a two-way data connection between two Android phones using a GSM or UMTS DataCall. It has to be a real data call (i.e.

[android-developers] Re: Emulator Skins for HTC Dream / T-Mobile G1

2008-09-24 Thread Laguiz
nice! On Sep 24, 9:41 am, Olaf Encke [EMAIL PROTECTED] wrote: Hello Android fans and developers. I just finished building the first HTC Dream/T-Mobile G1 skins for the Android emulator and would like to share them with you. Right now I have done the black version of the phone in portrait as

[android-developers] Re: How to order T-Mobile G1?

2008-09-24 Thread Matt
More interestingly, buyers would be able to have access to a contract free G1 (with a price point of $399), and could unlock the device with T-Mobile's blessing after 90 days From http://www.engadget.com/2008/09/23/t-mobiles-cto-on-g1-unlocking-and-tethering-plus-a-few-detai/ On Sep 23, 8:23 

[android-developers] Re: Market Place

2008-09-24 Thread Mark Murphy
They also seemed to imply during the presentation that the App Market would only accept free apps at first. I'm presuming that's part of the beta aspect of the initial App Market. Any idea on when they'll start allowing for pay apps? How the Market charge the user? (Charge on the cell bill

[android-developers] Re: Developing Wi-Fi applications in the emulator

2008-09-24 Thread Megha Joshi
The emulator doesn't support Wi-Fi, so WifiManager won't tell you anything useful. 2008/9/15 Bradley Kite [EMAIL PROTECTED] On 13/09/2008, Bradley Kite [EMAIL PROTECTED] wrote: On 11/09/2008, Bradley Kite [EMAIL PROTECTED] wrote: Hi all, I would like to develop an application

[android-developers] Re: G1 for developers in Europe

2008-09-24 Thread David Given
Octavian Voicu wrote: [...] There should be a special offer for developers so that they can buy it online from anywhere in the world with no subscription, so they can test their apps on the real thing. That would really speed things up and make Android better much faster. Yeah, but that

[android-developers] Re: G1 for developers in Europe

2008-09-24 Thread arnouf
I launch the same discussion earlier Especially to provide an access to G1 for ADC participant in Europe... See discussion there: http://groups.google.fr/group/android-discuss/browse_thread/thread/e3831f8a2899765e# regards On 24 sep, 18:51, David Given [EMAIL PROTECTED] wrote: Octavian

[android-developers] Google support for developers

2008-09-24 Thread ole!
We are really excited to see Android move forward. We believe that the openness of this platform is crucial to buisness development. Two questions: 1. Will there be a discount price for developers? 2. Are there possibilities that Google will support Android-based businesses with VC funding or

[android-developers] Survey: One G1 for each ADC entrance

2008-09-24 Thread arnouf
Please, Could you answer to this survey? I would like that european Android developers aren't forgotten by Google Android, HTC and T-Mobile. http://spreadsheets.google.com/viewform?key=pBxgcXvOI-GXYJ4UoYyEpAA Thanks all! --~--~-~--~~~---~--~~ You received this

[android-developers] Re: Google support for developers

2008-09-24 Thread Mark Murphy
2. Are there possibilities that Google will support Android-based businesses with VC funding or marketing collaborations? There are the Android Developer Challenges. ADC II is supposed to be announced in the fourth quarter of 2008. Also, getting applications into the App Market will give you

[android-developers] Bug with Ellipsize in ListView?

2008-09-24 Thread Mark Hansen
I was implementing a view this morning with Ellipsize and noticed some characters appearing after the ... http://dl.getdropbox.com/u/26335/ellipsize.png Notice the middle two lines have a box like it has an unrenderablecharacter. Is this a bug, or am I doing something strange?

[android-developers] XML-RPC

2008-09-24 Thread [EMAIL PROTECTED]
Hello I am looking for a way to use XML-RPC with Android. Is there anyone who has succesfully done this? Thankful for any advice Regards Goluef --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: google sdk and eclipse plugin

2008-09-24 Thread Maxim Novikov
Great thanks, Markos. Manual installation from local place works. 2008/9/4 Marcos Hack [EMAIL PROTECTED] It seems to be a problem in the ADT update site. The ADT update site URL isn't working (https nor http). You can try to install the ADT plugin using the Archive Site as described in the

[android-developers] Need help getting started! Mships.com benevolent themes.

2008-09-24 Thread [EMAIL PROTECTED]
Mships.com is new to Android and programming in general. I want to have a simple clean interface for many Mships.com themes. They're positive, benevolent and friendly games like ILoveNerds!, Ukons (daily good deeds), PetGhosts!, Groovyz!, PeaceSignz! + many more. Mships games are REAL-LIFE

[android-developers] GPS Power Consumption Questions

2008-09-24 Thread Jeff Kao
Our app uses the LocationManager to request ongoing updates from the onboard GPS service. GPS is notoriously power-hungry, and I'd love to gain some insight from Google Engineers on how to best use GPS in our app to prevent too much battery waste in usage on the actual G1 device. Can a Google

[android-developers] Re: Android 1.0 SDK Released

2008-09-24 Thread jtaylor
Congrats! This is bigger than the G1. ..My Emulator is very stable. - Juan T. On Sep 23, 6:09 pm, Megha Joshi [EMAIL PROTECTED] wrote: Hi everyone, We're pleased to announce the release of the Android 1.0 SDK, release 1. For full information, please see Dan Morrill's blog post:

[android-developers] Eclipse plugin update

2008-09-24 Thread mistapony
Has everyone been successful installing the newest eclipse plugin or just updating the plugin? I am trying to update and getting the following error with ganymede on osx: Cannot complete the request. See the details. Cannot find a solution where both Match[requiredCapability:

[android-developers] replacing incoming call and outgoing call screens

2008-09-24 Thread kingkung
The incoming call and outgoing call screens (when you call someone/ receive someone's call) are currently default screens launched by the Dialer, or some other built-in Android app. Is it possible to replace these screens? --~--~-~--~~~---~--~~ You received this

[android-developers] Google isn't going to do billing for mobile apps? Confirm?

2008-09-24 Thread BikingBill
Saw this: http://www.moconews.net/entry/419-g1-live-the-android-market-is-no-app-store/ ...when Android Market does allow apps to be sold, Google won’t take a cut of revenues, unlike Apple (NSDQ: AAPL). It will purely be an arrangement between the carrier and the mobile app developer. It is

[android-developers] Re: Developing Wi-Fi applications in the emulator

2008-09-24 Thread Bradley Kite
Hi Megha Joshi, In the 1.0 SDK, WifiManager.getScanResults() returns a list of ScanResult objects, each of which contains a capabilities String. Please could you provide an example of what form this string might be? I'm trying to get an understanding of how I might have to parse this

[android-developers] Transparent Buttons Focus

2008-09-24 Thread Shaun
I have some buttons without backgrounds ( produced either by setBackgroundDrawable(null) or setBackgroundColor(0x) ) -- that part works fine. However, when the button does not have a background it never gets the orange focus highlight and hence is not navigable via trackball. It does

[android-developers] Re: Eclipse plugin update

2008-09-24 Thread geekchique
Uninstall everything then try again and see if that helps. I had a few teething problems too but just uninstalled/reinstalled. On Sep 24, 7:19 pm, mistapony [EMAIL PROTECTED] wrote: Has everyone been successful installing the newest eclipse plugin or just updating the plugin?  I am trying to

[android-developers] Do services run in their own processes

2008-09-24 Thread Anshul
I have a services that registers itself for boot completed event and when started by the phone creates two new services in a thread using startService function. My question is wthere the two newly created services run in the same process as the servivce that created them or in separate processes.

  1   2   >