[android-developers] Can't receive UDP packets correctly

2009-11-12 Thread Pierre
I use Android 1.5 on HTC Hero My code (udp server on my phone) : this.socket = new DatagramSocket(port); byte[] array = new byte[500]; DatagramPacket packetIn = new DatagramPacket(array,500); this.socket.receive(packetIn); System.out.println(packet length + packetIn.getLength()); Packet length

[android-developers] Re: Can't receive UDP packets correctly

2009-11-12 Thread Pierre
On Thu, Nov 12, 2009 at 2:16 PM, Pierre pierredur...@gmail.com wrote: I use Android 1.5 on HTC Hero My code (udp server on my phone) : this.socket = new DatagramSocket(port); byte[] array = new byte[500]; DatagramPacket packetIn = new DatagramPacket(array,500); this.socket.receive

[android-developers] Re: Can't receive UDP packets correctly

2009-11-12 Thread Pierre
each time i call receive(), i receive the first byte of the received packet On Nov 12, 10:14 pm, Dan Sherman impact...@gmail.com wrote: Subsequent calls just block until the timeout? - Dan On Thu, Nov 12, 2009 at 3:52 PM, Pierre pierredur...@gmail.com wrote: I receive only the first byte

[android-developers] Re: Can't receive UDP packets correctly

2009-11-13 Thread Pierre
Do you know if it's a bug ? Is it possible to receive UDP packet on android ? Is there any example ? On 12 nov, 22:27, Pierre pierredur...@gmail.com wrote: each time i call receive(), i receive the first byte of the received packet On Nov 12, 10:14 pm, Dan Sherman impact...@gmail.com wrote

[android-developers] Re: Can't receive UDP packets correctly

2009-11-14 Thread Pierre
No problem on the Android 2.0 emulator... I'm testing on 1.5 emulator... On 14 nov, 01:43, Pierre pierredur...@gmail.com wrote: Do you know if it's a bug ? Is it possible to receive UDP packet on android ? Is there any example ? On 12 nov, 22:27, Pierre pierredur...@gmail.com wrote: each

[android-developers] Re: Can't receive UDP packets correctly

2009-11-14 Thread Pierre
Please, tell me i'm wrong : It looks that received packet are truncated after n bytes. n is the size of the first received packet. Seriously, this bug make me mad ! It only happens on MY phone ! On 14 nov, 13:59, Pierre pierredur...@gmail.com wrote: No problem on the Android 2.0 emulator

[android-developers] Re: Can't receive UDP packets correctly

2009-11-14 Thread Pierre
I can reproduce this bug in the Android 1.5 emulator ! On 14 nov, 15:26, Pierre pierredur...@gmail.com wrote: Please, tell me i'm wrong : It looks that received packet are truncated after n bytes. n is the size of the first received packet. Seriously, this bug make me mad ! It only happens

[android-developers] Re: Can't receive UDP packets correctly

2009-11-14 Thread Pierre
Ok, to sumarize : My program receive UDP packets. On my HTC Hero (Android 1.5) and on emulator 1.5-1.6, i can't receive UDP packets correctly. They are truncated after the first byte (i receive only 1 byte packets). No problem in the Android 2.0 emulator On 14 nov, 15:57, Pierre pierredur

[android-developers] Re: Can't receive UDP packets correctly

2009-11-15 Thread Pierre
byte[] array = new byte[500]; ? On Nov 16, 7:37 am, Chopcsu st...@kilsby.com.au wrote: Does byte[] array actually only have 1 byte in it? Could be that the getLength call is just incorrect. On Nov 13, 6:16 am, Pierre pierredur...@gmail.com wrote: I use Android 1.5 on HTC Hero My code

[android-developers] Re: Multicast receive broken in Android 1.5?

2009-07-30 Thread pierre
. It would be interresting to check with a G1 which has not been upgraded to Cupcake. If CONFIG_IP_MULTICAST=yes is found, it would confirm that the kernel has lost IP Multicast during the Cupcake upgrade. Pierre --~--~-~--~~~---~--~~ You received this message

[android-developers] filenotfound ... but creating with recorder !!!

2009-08-03 Thread pierre
Hi, I don't understand how this can happen (it has just happened once, works properly other times) : - /sdcard/mydir/ is an existing directory - myRecord.3gp doesn't exist, of course. ERROR : java.io.FileNotFoundException: /sdcard/mydir/myRecord.3gp at

[android-developers] Re: Experimental Bluetooth Library

2009-08-05 Thread pierre
Hi ! Do you have any solution for setting up the SCO channel for a Bluetooth headset ? Would it be possible with reflexion on ScoSocket.java instead of RfcommSocket.java for example ? Thanks! Pierre --~--~-~--~~~---~--~~ You received this message because you

[android-developers] questions of inserting image

2008-04-17 Thread Pierre
I want to design an simple multimedia message interface for testing the network. And now I have a question of how to insert image into the message. Is there anyone who can tell me about it? Many thanks. --~--~-~--~~~---~--~~ You received this message because you

[android-developers] How to insert image?

2008-04-21 Thread Pierre
Hi, all I want to design an interface which can input text and insert image. But I don't know how to insert an existed image. Which class should I use? Anyone can heip me? Thanks Pierre --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Re: How to insert image?

2008-04-21 Thread Pierre
Thank you, Gibson! I'll go to see the demo. On 4月21日, 上午11时09分, Gibson [EMAIL PROTECTED] wrote: Well. Maybe you can using ImageView i think. There are lots of demo in ApiDemo application. You can try it. Good luck. On Apr 21, 4:54 pm, Pierre [EMAIL PROTECTED] wrote: Hi, all I want

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

2008-04-22 Thread Pierre
Hi, all, If I want to send a multimedia message(text, image, video) from one devcie to another devcie, how to do that? How to make all the things(text, image, video) together to send them? Is it possible to send a file(image or video or text) as an attachment? Tkank you! Pierre

[android-developers] Is there any class which implements sending a MMS in Android?

2008-04-24 Thread Pierre
Hi, all Is there any class which implements sending a MMS in Android? I would like to send a MMS(text, image, video ect) between Android device, How to implement this? Any one can help me? Thanks --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] How to broadcast an intent?

2008-06-16 Thread Pierre
Hi,all Anybody can tell me how to broadcast an intent? Thanks in advance! Pierre --~--~-~--~~~---~--~~ 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

[android-developers] How to use Bundle and intent?

2008-06-23 Thread Pierre
Hi, all, Anyone can tell me how to put data into a Bundle and then put it into an intent? Can you give me some simple code of how to use it? I can not understand very well android.os.bundle and intent in the SDK document. Thanks in advance! Pierre

[android-developers] How to put images in the ListView?

2008-07-16 Thread Pierre
Hi, all, I would like to make a ListView with images in the list? I have no idea how to put images in the list. Anyone can tell me how to do it? Thanks in advance. Pierre --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] How to control the image size in a ListView?

2008-07-18 Thread Pierre
? Can anyone tell me how to solve this problem? Thanks! Pierre --~--~-~--~~~---~--~~ 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

[android-developers] Re: How to control the image size in a ListView?

2008-07-21 Thread Pierre
me more! Pierre On 7月20日, 上午11时39分, Guillaume Perrot [EMAIL PROTECTED] wrote: Could you send the layout file you use with your adapter ? Do you override the ArrayAdapter class to use images in list view ? I had no problem working with images in list view. On 18 juil, 16:28, Pierre [EMAIL

[android-developers] Re: How to control the image size in a ListView?

2008-07-22 Thread Pierre
Hi, Guillaume and Frantz Thank you very much. I made a little mistake in my code. That is why some error occured when displaying the images. I have solved it. Thank you! Pierre On 7月21日, 下午4时38分, Guillaume Perrot [EMAIL PROTECTED] wrote: Ok Frantz but this doesn't answer me why Pierre's code

[android-developers] Determine if my application is visible on screen

2010-05-04 Thread Pierre
I need a system to determine if my application is visible on screen. My app is running gps, network request, etc ... and I want to disable them when my app is not running or visible on screen Do you know how to do that ? Thanks ! -- You received this message because you are subscribed to the

[android-developers] Setting Custom ringtone to contacts

2010-12-13 Thread pierre
Hello, I have created an activity that copies an MP3 file from the assets to the SD card, then sets that MP3 file as the default ringtone. // file is the file on the SD card ContentValues values = new ContentValues(); values.put(MediaStore.MediaColumns.DATA,

[android-developers] Re: Setting Custom ringtone to contacts

2010-12-13 Thread pierre
Update: This code works on Android 1.6, but not on 2.2.1. Does anyone know how to update this code so it will work on 2.2.1 ? Thanks. On Dec 13, 12:17 am, pierre scoka...@gmail.com wrote: Hello, I have created an activity that copies an MP3 file from the assets to the SD card, then sets

[android-developers] RTSP and RTP streaming on the Cupcake-upgraded

2009-06-16 Thread pierre
Hello all, I am trying to test RTP streaming on the Android G1 dev phone with no success. I used to do that successfully before to upgrade to Cupcake. But now the same test doesn't work anymore. Is it supposed to work? Here is a detailed description of the test: 1) The device is the G1 dev

[android-developers] RTP streaming with Cupcake

2009-06-17 Thread pierre
Hello all, is RTP streaming known to be working on Cupcake devices? I have not been able to start an RTP multimedia session with my G1 since Cupcake upgrade. It was working before the upgrade, e.g. by using the VideoView class and providing an RTSP URL. But the same test which was working

[android-developers] Re: RTP streaming with Cupcake

2009-06-24 Thread pierre
Sorry, there is no RTSP problem with Cupcake. My problem was due to the viedo file which was not really identical to the one used before. Regards. On 17 juin, 12:57, pierre pierre.rou...@gmail.com wrote: Hello all, isRTPstreamingknown to be working on Cupcake devices? I have not been able

[android-developers] IOException(S) with sdcard files

2009-07-07 Thread pierre
Hi, I have, sometimes, quite often, some IOExceptions when I access sdcard files, for example when I do : - MediaPlayer.prepare() (with path to sdcard file set before) - File.mkDir() - MediaRecorder.prepare() (with path to sdcard file set before) If I retry later it works fine. Do you have any

[android-developers] [CTS-2.3-R12] MediaStress test fail for Vp8R480x360LongPlayerTest

2012-03-22 Thread Pierre
? Thanks - Pierre -- 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+unsubscr...@googlegroups.com For more

[android-developers] Easy way to send a Contact over Bluetooth (in standard format)?

2011-07-26 Thread Pierre
Hi, is there an easy way to send a Contant via Bluetooth, from code of course? Preferably in a format not only other Android devices will understand but as a wide selection of other brands as possible. Thanks! -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: How do I show a call screen when my VoIP application is on background?

2013-11-25 Thread pierre
You may use PowerManager.WakeLock with ACQUIRE_CAUSES_WAKUP and ON_AFTER-RELEASE flags (and apropriate authorizations). Pierre -- 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

[android-developers] Re: android htc touch HD

2008-11-25 Thread Pierre Bonnefoy
Hi, You should look there http://wiki.xda-developers.com/index.php?pagename=RaphaelLinux and in this related thread on their forum http://forum.xda-developers.com/showthread.php?t=402002 Pierre 2008/11/24 Josh Joy [EMAIL PROTECTED] Hi, Was wondering if anyone was working on putting

[android-developers] Re: Bug in IM client

2008-11-30 Thread Pierre Bonnefoy
http://source.android.com/report-bugs 2008/12/1 bradycl_84043 [EMAIL PROTECTED] Can you give me a link to instructions for doing so? Thanks! Brady W. Clark [EMAIL PROTECTED] On Nov 30, 3:22 pm, Xavier Mathews [EMAIL PROTECTED] wrote: Post This In The Issue Tracker! And it will be

[android-developers] Re: New SDK Available

2008-12-07 Thread Pierre Bonnefoy
A SIM is necessary if you want to make phone calls on a standard cellular networks (I mean, you can still make phone calls on WiFi without a SIM). 2008/12/7 Xavier Mathews [EMAIL PROTECTED] I thought that iphone was also an ipod and has over 10,000 apps what is the point of a sim?

[android-developers] Re: Android Dev Phone 1™

2008-12-09 Thread Pierre Bonnefoy
Considering it statesThe device currently costs $399 (USD) (including free shipping in the US), and will be available for purchase in 18 international markets, including the US, UK, Germany, Japan, India, Canada, France, Taiwan, Spain, Australia, Singapore, Switzerland, Netherlands, Austria,

[android-developers] Re: Building on Ant

2008-12-09 Thread Pierre Bonnefoy
You'd rather keep the build.xml file where it currently is.You'd rather indicate ant how to find the buildfile using an option. Should be --build or --buildfile (???). ant --help should help you find out the correct option to use. 2008/12/9 Tharun Kumar [EMAIL PROTECTED] Hi, I'm trying to

[android-developers] Re: Cupcake coming in April? Where is the SDK?

2009-03-24 Thread Pierre Bonnefoy
Romain, Jean-Baptiste, Just to clarify, the G2 is announced for April in some countries. The G2 is using virtual keyboard. Will the G2 be at first available with an update of 1.1 or will it be a derivative of cupcake ? Thanks 2009/3/24 Jean-Baptiste Queru j...@android.com: I'll very gladly

[android-developers] Re: migrate android to hardware

2009-01-30 Thread Pierre Bonnefoy
already trying to achieve what you are asking for ;-). Regards, Pierre 2009/1/30 jacky jacky_w...@ovt.com.cn Hi all: I'am going to migrate android to OMAP2430. how could I get start? Is there any migration step I can follow ? Is that possible to share some resource with me? Thanks

[android-developers] Android SDK 1.6 and ADC2

2009-09-17 Thread Jean-Pierre
Hello, The SDK 1.6 is now out, but does someone knows when it will be pushed on hardware ? I am a bit concerned, because I submitted and application to the ADC2 that crash when I run it on 1.6. It works well on 1.5. I hope Google will not update users phone before the end of the ADC2, otherwise

[android-developers] Re: Donut upgrade and ADC2

2009-09-18 Thread Jean-Pierre
On Sep 17, 10:11 pm, niko20 nikolatesl...@yahoo.com wrote: I dont see why they will just crash. My app just crash under 1.6 :( See my post here : http://groups.google.com/group/android-developers/browse_thread/thread/5b3f2f772eb923f9# JP.

[android-developers] Re: Unable to chmod sdcard: Read-only file system

2009-10-27 Thread Pierre Henry
Nima, Try a *chmod 0777 sdcard* instead... -- Pierre --~--~-~--~~~---~--~~ 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

[android-developers] Re: custom protocol handler...

2009-11-12 Thread Pierre Henry
sdphil hi, Have you setup a server for protocol yourprotocol:// ? On 12 nov, 07:39, sdphil phil.pellouch...@gmail.com wrote: anybody?  andybody?? :) On Nov 11, 9:09 am, sdphil phil.pellouch...@gmail.com wrote: i want to do the following thing - when a user navigates to a web page, I

[android-developers] Permission denial

2009-11-18 Thread Pierre Henry
All hi, This error is logged when launching activity: __ 11-19 00:15:41.940: WARN/ActivityManager(71): Permission Denial: starting Intent { flg=0x1000 cmp=com.soladhoc.affinity.ecf/.RemoteServiceBinding } from null (pid=-1, uid=-1) requires android.permission.INTERNET

[android-developers] Debug config not stopping at break points

2009-11-23 Thread Pierre Henry
All hi, Breakpoints in code arent efficient, debugger doesnt stop at it. __ Eclipse 3.5.2, Android sdk 2.0 Windows XP __ Is this a know problem ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] contentView Required

2009-11-23 Thread Pierre Henry
Hello, regarding the trace dump following, what does mean 'contentView required' ? __ java.lang.RuntimeException: Unable to create service com.comp.app.MyService: java.lang.IllegalArgumentException: contentView required: pkg=com.comp.app id=1 notification=Notification

[android-developers] Re: Background Service is not working.

2009-11-24 Thread Pierre Henry
You can do that easily with NotificationManager -- Pierre -- 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

[android-developers] Debug config not stopping at break points

2009-11-24 Thread Pierre Henry
Why should the debugger dont make breakpoints stop when running an android app on Eclipse ? -- 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

[android-developers] Caused by: java.io.NotSerializableException: android.os.Message

2009-11-24 Thread Pierre Henry
I get a * NotSerializableException* exception trying to send objects between two processes. Is it possible to do client/server sending of serializable objects between two processes ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: Caused by: java.io.NotSerializableException: android.os.Message

2009-11-25 Thread Pierre Henry
mmur...@commonsware.com wrote: Pierre Henry wrote: I get a * NotSerializableException* exception trying to send objects between two processes. Is it possible to do client/server sending of serializable objects between two processes ? Use AIDL and remote services for that: http

[android-developers] Re: Server does not receive message from client

2009-11-26 Thread Pierre Henry
Hi, Your server is up at 10.0.2.15 and the client try to connect to 10.0.2.2 ? On 11 nov, 17:49, Mike88 michael...@gmail.com wrote: Hello, I have created a simple server and client both on android phone or emulators. The code is as follows Server: import java.io.BufferedReader; import

[android-developers] Server/Client runs on device but client timeout on emulator

2009-11-30 Thread Pierre Henry
I have a server socket process running on device. When I run a client socket on the same device it works. When I run the client on emulator it timeouts. What is the reason ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] PlayDriver

2010-02-23 Thread Pierre Henry
Hi, I'm playing with 'MediaPlayer' class and 'm encoutering a curious message in debug win: __ 02-23 11:34:06.288: ERROR/PlayerDriver(51): Invalid percentage value 82597 __ The message is scrolling with increasing value of the percentage value. The

[android-developers] Re: Problem:ActivityManager Error type 3

2008-03-25 Thread Pierre Neihouser
Without your code or your Manifest.xml file it's almost impossible to help you. It looks like you are referring somewhere to LayoutAndy.Layoutandy, my first guess would be a lower instead of upper case issue with Layoutandy. On Tuesday, March 25, 2008, at 06:49AM, Dagger [EMAIL PROTECTED]

[android-developers] Re: to phone

2008-03-25 Thread Pierre Neihouser
You can't, see third Frequently Asked Question here : http://code.google.com/android/kb/general.html On Tuesday, March 25, 2008, at 03:11PM, Danny Jr [EMAIL PROTECTED] wrote: Just wondering how I can get Andriod on my phone i have a motorola q

[android-developers] Re: About iPhone OS and SDK

2008-04-16 Thread Pierre N
Objective-C : http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/Introduction/chapter_1_section_1.html On Wed, Apr 16, 2008 at 7:17 AM, pramod shinde [EMAIL PROTECTED] wrote: Hi everyone, Can anybody let me know what is development language used by Apple for developing

[android-developers] Re: Touch screen inactive

2009-12-15 Thread Pierre Henry
Problem not known == problem On Nov 18, 9:51 am, Pierre Henry Perret phper...@gmail.com wrote: In stacking tasks, at some point the touch screen dont work any more. It works again later without reason. Is this a known problem ? -- You received this message because you are subscribed

[android-developers] MediaPlayer hanging abruptedly

2009-12-29 Thread Pierre Henry
I have a code running a MediaPlayer object with an mp3 uri somewhere in an activity. The player runs for 6/7 minutes and suddenly hangs off. Is there a particular thing to do with a mp3 streaming server ? -- Pierre -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Eclipse problems

2010-08-10 Thread georges pierre
Thank you very mutch adal for your answer ! Thanks :) 2010/8/9 Adal arpi...@gmail.com Could it be that you've tried to run with an xml file open an with focus? If it's the case, delete the extra .xml file that eclipse have created, then go to problems, and delete the problem. On Mon, Aug

[android-developers] Re: Install Android on Windows XP

2009-05-17 Thread Pierre Bonnefoy
The link you used can no longuer work with the new version of the sdk because the parameters to pass to the emulator when you launch it have changed. Basically, what was described could work (the other methods described in the answers requires that you install eclipse, which is not mandatory if

[android-developers] drawCircle call causes an extra elipse draw in a custom Drawable object for google map overlay using google map android API

2010-12-06 Thread Pierre-yves
Hi, I'm trying to draw a circle on a MapView. I created my own drawble object to be passed to an ItemizedOverlay class MyDrawableMarker extends Drawable{ @Override public void draw(Canvas canvas) { Paint p = new

[android-developers] Re: Intercept bluetooth headset button or action (again...)

2011-01-14 Thread Jean-Pierre
Same problem over here on HTC Desire with 2.2. I have a broadcastreceiver listening for the intent android.intent.action.MEDIA_BUTTON. Unfortunately always when i press the bluetooth headsets button a redial (call) is made. I'm already calling registerMediaButtonEventReceiver(...); in my

[android-developers] startActivityForResult

2010-02-27 Thread Pierre Henry
Encoutered a tricky result using startActivityForResult from an Activity In the called Activity , I set result like that: __ setResult(RESULT_OK, getIntent().putExtra(getPackageName()+values, values)); __ When running the on ActivityResult, the extra has

[android-developers] RFID tag detection

2011-05-17 Thread Pierre Yaacoub
? Thank you very much Pierre -- 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+unsubscr...@googlegroups.com

[android-developers] Re: RFID tag detection

2011-05-18 Thread Pierre Yaacoub
should i call? intent.get ? Note: I tried Parcelable[] rawMsgs = intent.getParcelableArrayExtra(NfcAdapter.EXTRA_NDEF_MESSAGES); as isdescribed on the android website, but it returned null, probably because the tag type is unknown Thank you very much Pierre On May 18, 2:34

Re: [android-developers] Re: RFID tag detection

2011-05-18 Thread Pierre Yaacoub
should i call? intent.get ? Note: I tried Parcelable[] rawMsgs = intent.getParcelableArrayExtra(NfcAdapter.EXTRA_NDEF_MESSAGES); as isdescribed on the android website, but it returned null, probably because the tag type is unknown Thank you very much Pierre On Wed, May

Re: [android-developers] Re: RFID tag detection

2011-05-18 Thread Pierre Yaacoub
the intent: byte[] id = intent.getByteArrayExtra(NfcAdapter.EXTRA_ID); /Adam On 18 Maj, 00:19, Pierre Yaacoub pierreyaac...@gmail.com wrote: Hello, I am trying to build an application that uses the new Android capability of detecting RFID (NFC) tags. The tags that I have

[android-developers] Tablette M711 sous Android 2.3.4 / M711 tablet

2012-09-14 Thread Pierre CORDEBAR
Bonjour! Je viens d'acheter une tablette M711 qui est sous Android 2.3.4 et je cherche son adresse mac, aidez-moi svp. Hi! I just bought a M711 tablet with Android 2.3.4 and looking for its mac address! Help! -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Generate keypress when moving phone

2011-12-12 Thread Charly Pierre
Hello all, I want to generate a presskey when i move my phone. i try with that but it doesn't work = crash x = values[SensorManager.DATA_X] * 9; if (x =45 ) { SimulationKey.PressTheKeyRIGHT(); } // in Simulation class public static void pressTheKeyRIGHT() { Instrumentation i = new

[android-developers] Re: Generate keypress when moving phone

2011-12-15 Thread Charly Pierre
(KeyEvent.VK_ENTER);// example with ENTER on computer robot.delay(Delay); } but Robot class doesn't exist for android... Have u ideas (other than Debug your app.) ? Thx On 13 déc, 00:38, TreKing treking...@gmail.com wrote: On Mon, Dec 12, 2011 at 4:01 PM, Charly Pierre charlypierr

[android-developers] Re: MediaPlayer setDisplay

2012-02-29 Thread Pierre Souchay
, replace the old MediaPlayer... but unfortunatly, it will create an Audio artifact :( Do you have other ideas ? Cheers Pierre Souchay On 27 fév, 17:01, Cliffus cliff.ophalv...@gmail.com wrote: Hi we're creating an application for a radio station. The concept of the application is a little

[android-developers] Eclipse version

2009-11-09 Thread Pierre Henry Perret
All hi, What is the minimal version of eclipse SDK should be used to build android ? Pierre -- 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

Re: [android-developers] Re: custom protocol handler...

2009-11-12 Thread Pierre Henry Perret
Just implement a verver for yourprotocol:// Pierre 2009/11/12 sdphil phil.pellouch...@gmail.com starting to wonder if what I'm really trying to get at is being able to start an activity via. an intent from a web page thoughts? On Nov 12, 8:42 am, sdphil phil.pellouch...@gmail.com wrote

[android-developers] Touch screen inactive

2009-11-18 Thread Pierre Henry Perret
In stacking tasks, at some point the touch screen dont work any more. It works again later without reason. Is this a known problem ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-17 Thread Blake La Pierre
Anyone in the US get their phone yet? On Wed, Mar 17, 2010 at 2:12 PM, Grzegorz Ae grzegorz.m...@gmail.comwrote: I'm from Poland and I got my nexus one. Hope You will get Yours. On 16 Mar, 12:17, Michael nicholls...@googlemail.com wrote: Hi I filled out the form on Sunday 7th March and

Re: [android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-19 Thread Blake La Pierre
Anyone in the US get their phone yet? On Wed, Mar 17, 2010 at 7:40 PM, olivier.bo...@gmail.com olivier.bo...@gmail.com wrote: Hi, Has anyone received one and is not in the ADC2 top 200? I mean has anyone received one just because he has an application in the market matching the criteria?

Re: [android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-22 Thread Blake La Pierre
What phone only has 1.5? 2010/3/22 Justin Giles jtgi...@gmail.com Android adventurers log: Date: 2010-03-22 Day 20, It's been 20 days since I got stranded on this thread. I sent a distress signal to Google right after I found this thread and have only received one response from them:

Re: [android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-22 Thread Blake La Pierre
Why didn't they get 1.6 like the G1? On Mon, Mar 22, 2010 at 9:45 AM, Justin Giles jtgi...@gmail.com wrote: HTC Hero on Sprint, HTC Eris on Verizon to name a few. 2010/3/22 Blake La Pierre blakelapie...@gmail.com What phone only has 1.5? 2010/3/22 Justin Giles jtgi...@gmail.com Android

Re: [android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-23 Thread Blake La Pierre
Sweet, anyone near NY get one today? On Tue, Mar 23, 2010 at 12:17 PM, tristan tristanm...@gmail.com wrote: Received a nexus one today. Houston, Texas (Not for ADC2) On Mar 23, 10:35 am, JasonC jcohe...@gmail.com wrote: Has anyone in the US gotten any additional Confirmation? I love how

Re: [android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-23 Thread Blake La Pierre
Come on N1! If they are coming from Indiana, I am probably still another day away though... On Tue, Mar 23, 2010 at 1:11 PM, JasonC jcohe...@gmail.com wrote: NO!! Let me get my Droid cause I know my luck sucks and I will get one and Ill trade you :) I will even pay shipping on both.

Re: [android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-23 Thread Blake La Pierre
5:30 here in Connecticut, no package and no package slip :( On Tue, Mar 23, 2010 at 5:23 PM, Sundog sunns...@gmail.com wrote: Sweet. I'm on the other end of Texas, fingers crossed. On Mar 23, 10:30 am, tristan tristanm...@gmail.com wrote: FedEx @ Home - Sent from Indiana On Mar 23,

Re: [android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-24 Thread Blake La Pierre
Where did you find live chat? All I can find is phone numbers to call. On Wed, Mar 24, 2010 at 2:40 PM, Bryan Allen browne.al...@gmail.com wrote: Live chat with FedEx works great. Your address, the shipper name, and you're golden. I spent about 4 minutes on it and found out it's arriving

Re: [android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-24 Thread Blake La Pierre
You guys clogged the live help. No representatives available!!! On Wed, Mar 24, 2010 at 3:28 PM, bx ben.rosenb...@gmail.com wrote: excellent tip! I just did this, and they said mine's due on friday as well... can't wait! On Mar 23, 9:18 pm, Rocco optikalsa...@gmail.com wrote: If you're

Re: [android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-26 Thread Blake La Pierre
N1 in Connecticut. On Thu, Mar 25, 2010 at 8:39 PM, Jason Arora jaso...@gmail.com wrote: There are 2 ways to uninstall applications: 1) Market-Downloads (this will prompt you) 2) Home-Menu-Settings-Manage Applications (no prompt) On Mar 23, 9:38 am, TreKing treking...@gmail.com wrote: On

[android-developers] Like Quartz

2011-06-09 Thread Pierre Diderot II
Hi guys, I'm looking for a feature that wakes up from time to time to make particular actions, I know that there is quartz, but quartz doesn't exists in Android, do anyone have any solution? Thanks a lot!!! -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Help!!!

2012-02-05 Thread PIERRE GALOIS GUEVARA DONGO
I need help with my Xperia X8, because try to unlock the bootloader and now does not run, as if dead, I connect to the PC and does not work, is literally dead, I can do something to get my phone? I need help please -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: Help!!!

2012-02-06 Thread PIERRE GALOIS GUEVARA DONGO
utility,FWare version and amount of information about your phone. Just keep looking. Some where. There are many modes how to turn on the phone and how to put in OSystem. Sorry for this but i cant help you. On 5. Feb, 22:26 h., PIERRE GALOIS GUEVARA DONGO pgueva...@upao.edu.pe wrote: I need

[android-developers] Re: Troubles with in app purchases

2016-07-04 Thread Pierre-Antoine Péron
Anybody? Le dimanche 3 juillet 2016 22:48:03 UTC+2, Pierre-Antoine Péron a écrit : > > Hi > > I experience a big problem regarding in app purchases. In fact, when I try > to make a purchase, the google play purchase window opens twice although > other developers did not h

[android-developers] Troubles with in app purchases

2016-07-03 Thread Pierre-Antoine Péron
publishing. I am using Corona SDK and I already asked the questions to them but no solution was found to fix the issue (everything else is working fine). I attach a screenshot where we can see the window opening twice (one behind the other). Thanks in advance for your replies Pierre Péron -- You