[android-developers] unsubscribe

2009-11-16 Thread jphdsn
how to unsubscribe to developper group? -- 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 email to

[android-developers] start and stop BOOT_COMPLETED in broadcast receiver

2009-06-22 Thread jphdsn
Hi, Could we, and how (-:)) start and stop a broadcast receiver receving the android.intent.action.BOOT_COMPLETED ? As I want have control on a service awaken by the BOOT_COMPLETED. Thanks --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Position of tha zoom in a mapView

2009-06-19 Thread jphdsn
Hi If anyone knows how to change the position of the zoom in a mapView. Thanks --~--~-~--~~~---~--~~ 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] zoomcontrol position in a mapView

2009-06-19 Thread jphdsn
Could we with the 1.5 sdk change the position of the zoomcontrol in a mapView as The setBuidInZoomControls (different of getControl()method is not a child of a view? thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Re: zoomcontrol position in a mapView

2009-06-19 Thread jphdsn
I will use setBuidInZoomControls... Thanks, On 19 juin, 14:25, Mark Murphy mmur...@commonsware.com wrote: Could we with the 1.5 sdk change the position of the zoomcontrol in a mapView as The setBuidInZoomControls (different of getControl()method is not a child of a view? The Android

[android-developers] mapView and zoom widget position

2009-06-18 Thread jphdsn
hi Could we, in a mapView, change the position of the widget wich controls the zoom? (as the setBuitInControls(true) just set the widget!) Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] TabHost and MapView

2009-06-11 Thread jphdsn
Hi Could we play two different Maps in a ame TabHost? One for each TabSpec? Thank --~--~-~--~~~---~--~~ 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] SDK 1.5 and mac osx problem

2009-06-10 Thread jphdsn
Hi, I'm just buying a new macintosh and I want to install android. Previously I used on my old mac, the Android sdk 1.1. So I install Eclipse and Android sdk 1.5. But when I import a project and build it, I have an error message : [2009-06-10 12:20:09 - LunchList] The connection to adb is

[android-developers] SDK 1.5 and Eclipse problem

2009-06-10 Thread jphdsn
Hi, I'm just trying the SDK 1.5 with a new installation of Eclipse and the eclipse plugin When I import a project and run it, I have an error message : [2009-06-10 12:20:09 - Lunc] The connection to adb is down, and a severe error has occured. [2009-06-10 12:20:09 - Lunc] You must restart adb

[android-developers] ADB server didn't ACK, cannot bind tcp...

2009-06-10 Thread jphdsn
Hi Coud anyone tell me if he had been teh same problem witj the adb command line? jphdsn$ /Developer/android-sdk-mac_x86-1.5_r2/tools/adb shell * daemon not running. starting it now * cannot bind 'tcp:5037' ADB server didn't ACK * failed to start daemon * error: cannot connect to daemon

[android-developers] Re: ADB server didn't ACK, cannot bind tcp...

2009-06-10 Thread jphdsn
programs running your machine ? On Wed, Jun 10, 2009 at 4:06 PM, jphdsn jph...@gmail.com wrote: Hi Coud anyone tell me if he had been teh same problem witj the adb command line? jphdsn$ /Developer/android-sdk-mac_x86-1.5_r2/tools/adb shell * daemon not running. starting it now * cannot

[android-developers] Re: ADB server didn't ACK, cannot bind tcp...

2009-06-10 Thread jphdsn
Precision, I'm on macintosh... On 10 juin, 16:29, jphdsn jph...@gmail.com wrote: I don't think so but how can I be sure of that? thanks On 10 juin, 16:22, David Turner di...@android.com wrote: The ADB server binds and listen to port 5037. The error message seems to indicate

[android-developers] Re: ADB server didn't ACK, cannot bind tcp...

2009-06-10 Thread jphdsn
@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of jphdsn Sent: Wednesday, June 10, 2009 7:36 PM To: Android Developers Subject: [android-developers] ADB server didn't ACK, cannot bind tcp... Hi Coud anyone tell me if he had been teh same problem witj the adb command line

[android-developers] Re: ADB server didn't ACK, cannot bind tcp...

2009-06-10 Thread jphdsn
@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of jphdsn Sent: Wednesday, June 10, 2009 7:36 PM To: Android Developers Subject: [android-developers] ADB server didn't ACK, cannot bind tcp... Hi Coud anyone tell me if he had been teh same problem witj the adb command line

[android-developers] Content Provider and Files

2009-06-07 Thread jphdsn
Hi, I want create a Content Provider for JSON files. In that case, where could I store the files? First, I thought that I could store the files in an SDCARD, but not all the devices have or will have an SDCARD. Second, if I create this files in the app, can I use Content Provider? And what's

[android-developers] how to have the type of DATA (for email?)

2009-01-08 Thread jphdsn
Hi, How to recognize the type of an Email? The code above doesn't work cause Contacts.ContactMethods.TYPE makes it bug Cursor nameCursor = managedQuery (Contacts.ContactMethods.CONTENT_EMAIL_URI, new String[]

[android-developers] Re: Receive email permission?

2009-01-08 Thread jphdsn
put that permission in your manifest ! uses-permission android:name=android.permission.RECEIVE_SMS / On Jan 6, 9:38 pm, Matt Hall matt.h...@gmail.com wrote: Hi All, I'm looking for a permission or something similar to the SMS equivalent java.lang.String RECEIVE_SMS. I'd like to be

[android-developers] Re: Receive email permission?

2009-01-08 Thread jphdsn
hi, I hadn't seen the title... maybe pemissions about internet like android.permission.INTERNET look at the list of permissions http://code.google.com/android/reference/android/Manifest.permission.html On Jan 8, 11:14 pm, jphdsn jph...@gmail.com wrote: put that permission in your

[android-developers] AutocompleteTextView with cursor

2009-01-06 Thread jphdsn
hi , How to use AutoCompleteTextWiew with a cursor ? I tried for instance for the cursor addr contact.addTextChangedListener(this); contact.setAdapter(new SimpleCursorAdapter (this,R.layout.selectmail_item,addr, new String[]

[android-developers] hey Google men! Autocomplete problem. thanks

2009-01-06 Thread jphdsn
hi , How to use AutoCompleteTextWiew with a cursor ? I tried for instance for the cursor addr contact.addTextChangedListener(this); contact.setAdapter(new SimpleCursorAdapter (this,R.layout.selectmail_item,addr, new String[]

[android-developers] Autocomplete with simpleCursorAdapter or ArrayList

2009-01-05 Thread jphdsn
hi, to use an AutoCompleteTextWiew with an Array of string (mString) we can use for instance contact.addTextChangedListener(this); setAdapter(new ArrayAdapterString(this, android.R.layout.simple_list_item_1, mString)); } It works, but, how

[android-developers] Problem with list.setOnItemSelectedListener (new OnItemSelectedListener() {});

2009-01-03 Thread jphdsn
Hi, somebody knows why when nothing is selected on the list LIST the variable TextView ADNAME doesn't set the text toto in the code above? But the first String in position 0 of the String[]name? Why this code works only when a row of the list is selected? LIST.setOnItemSelectedListener (new

[android-developers] Re: How to get all list of running applications onto the emulator.

2008-12-21 Thread jphdsn
this file manager lists all files in android, by sorting the appyou can do your work. http://www.anddev.org/generalized_file_manager_2_-_gfm20-t397.html On Dec 21, 9:20 am, Dianne Hackborn hack...@android.com wrote: Use the PackageManager class to find out about installed apps, and

[android-developers] email adresses from Contacts.ContactMethods

2008-12-21 Thread jphdsn
hi, how to get the email adresses from Contacts.ContactMethods I tried a lot of things without success... thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] email adress from Contacts.ContactMethods. (again!)

2008-12-21 Thread jphdsn
to get email adress ao one contact, I tried String[] PROJECTION = new String[] {Contacts.ContactMethods._ID }; Cursor cu = getContentResolver().query (Contacts.ContactMethods.CONTENT_EMAIL_URI, PROJECTION,Contacts.ContactMethods.PERSON_ID

[android-developers] Contacts.ContactMethods. for Email

2008-12-20 Thread jphdsn
hi, I code an app and want to retrieve email from Contacts app of android. If somebody knows how to retrieve the mails of a contact... it will be cool or if someone could tell me why the code below doesn't work and how it could be work... String selection = Contacts.ContactMethods.KIND

[android-developers] setImageURI()

2008-12-15 Thread jphdsn
hi I try to use the method setImageURI(URI of the image) but the image doesn't play itself? my code im=new ImageView(SelectImage.this); im.setImageURI(uriImage); im.setAdjustViewBounds(true);

[android-developers] hi

2008-12-14 Thread jphdsn
Problem, how could I put images in MediaStore.Images.Media..INTERNAL_CONTENT¨_URI or MediaStore.Images.Media..EXTERNAL_CONTENT¨_URI is there any link the app Pictures? thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] MediaStore.Images.Media.INTERNA L_CONTENT¨_URI

2008-12-14 Thread jphdsn
hi, how put images in MediaStore.Images.Media.INTERNAL_CONTENT¨_URI thanks --~--~-~--~~~---~--~~ 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] Re: EditText

2008-10-27 Thread jphdsn
and you don't find a solution? On Oct 27, 12:59 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I was wondering the same thing yesterday. I'm trying to make minor changes to the notepad tutorial and this was one of them! --~--~-~--~~~---~--~~ You received this

[android-developers] hello

2008-10-24 Thread jphdsn
Has anyone try to stream audio with wifi connection? When I run my app stream-audio with adsl connection it's work, but with wifi connection it doesn't. if someone could give me a response it would be fine tahnk's --~--~-~--~~~---~--~~ You received this

[android-developers] stream audio with wifi connection

2008-10-24 Thread jphdsn
hello Has anyone tried to stream audio with wifi connection? When I run my app stream-audio with adsl connection it works, but with wifi connection it doesn't. if someone could give me a response it would be fine thank's --~--~-~--~~~---~--~~ You received this

[android-developers] use dependencies

2008-10-24 Thread jphdsn
Anyone knows how to use dependencies in Android. I need to import org.apache.http.entity.mime.MultipartEntity; import org.apache.http.entity.mime.content.FileBody; but I don't know how import classes that are not in Android. thank's --~--~-~--~~~---~--~~ You

[android-developers] how import org.apache.commons.httpclient ?

2008-10-19 Thread jphdsn
Anyone has imported the package org.apache.commons.httpclient? Is there a special mnipulation? If someone could give me a response it will be fine. thank's --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Recorder Audio

2008-09-23 Thread jphdsn
do you have a solution? On Sep 22, 11:50 am, ZIN [EMAIL PROTECTED] wrote: I saw in the properties MediaRecorder.AudioEncoder.AMR_NB, so the only format audio recorder type is .AMR But the music media in Android can't play this format? What can i solve this problem?

[android-developers] Re: Recorder Audio

2008-09-23 Thread jphdsn
have you find a solution? On Sep 22, 11:50 am, ZIN [EMAIL PROTECTED] wrote: I saw in the properties MediaRecorder.AudioEncoder.AMR_NB, so the only format audio recorder type is .AMR But the music media in Android can't play this format? What can i solve this problem?

[android-developers] Re: Recorder Audio

2008-09-23 Thread jphdsn
read arm format works, in bad quality On Sep 23, 8:17 am, jphdsn [EMAIL PROTECTED] wrote: have you find a solution? On Sep 22, 11:50 am, ZIN [EMAIL PROTECTED] wrote: I saw in the properties MediaRecorder.AudioEncoder.AMR_NB, so the only format audio recorder type is .AMR But the music

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

2008-09-22 Thread jphdsn
Hello, I try the same sample and I have nearly the same result. have you installed an sdcard and try another time? Have you a positive result? I try to install an sdcard but I've always the same line In the logcat: sdcard access error I think I've an error in the path but don't arrive to resolve

[android-developers] send SMS

2008-09-07 Thread jphdsn
hello, I'm a new french developer on android. I try the SMSAPISample but it doesn't work. import android.app.PendingIntent is not recognize. I 've take a look to the documentation and It seems that there is no other way to send SMS. Someone have tried and succeed with the sample or with