[android-developers] Frame by Frame Animation using java not happening

2010-04-29 Thread Nithin
Hi,

I am doing frame by frame Animation in java. I created bitmap,
converted to drawable and added all the drawable to AnimationDrawable
using addFrame() and set the time duration. Then I created a timer and
and and inside that , I am calling animationDrawable.start(), but its
showing only the first frame, animation is not taking place. I am
doing this in a class which extends ImageView and to this class I am
setting the setBackgroundDrawable() to my animationDrawable

Nithin

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: How to unregister listener after application get closed

2010-04-29 Thread zohar lerman
thanks

On Apr 28, 5:42 pm, Mark Murphy mmur...@commonsware.com wrote:
 zohar lerman wrote:
  First thanks for your quick responses.
  Second I have few more questions

  1. in your second suggestion is it possible ( and if yes how) to end
  the service later ( by user request)

 Call stopService().

  2. in your third suggestion is it possible to start the broadcast
  receiver by demand and the same question as in bullet 1 can i stop it
  later

 You would need to use PackageManager to enable and disable your
 manifest-registered BroadcastReceiver component.

 --
 Mark Murphy (a Commons 
 Guy)http://commonsware.com|http://twitter.com/commonsguy

 _Android Programming Tutorials_ Version 2.0 Available!

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] How to load more than one layout file for an activity

2010-04-29 Thread karteek22
Hi,
How can we use more than one layout file.
I have implemented a cutom dialog.That means i have created an layout file
for dialog.
And one layout file for my activity.
But whatever the UI items in dialog layout ile if iam using them by
findViewById it is giving me null

I will explain indetails here
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
applicationContext=getApplicationContext();

 Dialogfolder=new Dialog(this);
folder.setTitle(Creating folder);
folder.setContentView(R.layout.create_folder);
  TextView tv=findViewById(R.id.folder_text); //Here folder_text is
in my second layoutfile ie in create_folder.xml
//In the above statemet i got the null to tv variable.
folder.show();

}

Any suggestions please

Regards,
Karteek

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] How to see all the applications in the Google Market?

2010-04-29 Thread Grant Jia
Hi, friends,

The official web site just show the top applications both free and paid,
where or how could I see all the applications in the market?
Thanks.

Best Regards,
Grant

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: How to detect Bluetooth headset key press

2010-04-29 Thread mort
Hi,

it's pretty simple: add a broadcast listener to MEDIA_BUTTON:
intent-filter android:priority=some number
action android:name=android.intent.action.MEDIA_BUTTON /
/intent-filter

You need to give it a priority, which decides whether it's handled
before or after other apps. In other words, it's pure coincidence who
picked the highest number...
If you handled the button press, you should abort the broadcast with
abortBroadcast(). Trouble with this handling is, the priorities and
abortBroadcast() work fine as long as each app only responds while
e.g. something is played. But several users also expect a default
player to be launched (or start playing) upon button press, like the
default player, so it might happen some app with a higher priority
number won't let the intent come through to your app... (I already
filed an issue to improve that: 
http://code.google.com/p/android/issues/detail?id=7772
- no response so far...)

In the onReceive, you can get the button event with
KeyEvent key = (KeyEvent)
intent.getParcelableExtra(Intent.EXTRA_KEY_EVENT);

key.getKeyAction() tells you whether the button was released or
pressed, key.getKeyCode() tells which button. The values are
documented and pretty self explaining, like KeyEvent.ACTION_DOWN or
KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE.
Regarding press and release, keep in mind several headsets do own
processing which prevents this (like e.g. closing the connection or
sending stop on long press on play/pause) or simply send both at
once when the key is pressed or released. Also, some BT drivers are a
bit unreliable in that regard...

If you want to handle single button cable headsets as well, also
regard the key code KEYCODE_HEADSETHOOK.

btw: HTC Hero doesn't implement this standard, it needs a workaround
app.

HTH,
Mirko

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] How to load more than one layout file for an activity

2010-04-29 Thread Vo Trung Liem
Hi,

You can you LayoutInflater to for setting layout dialog.
Here is example code:

LayoutInflater factory = LayoutInflater.from(this);
final View testview = factory.inflate(R.layou.new_layout, null);
// process get all view your new layout

your_dialog.setTitle('');
your_dialog.setView(testView);

...



On Thu, Apr 29, 2010 at 2:26 PM, karteek22 kartee...@gmail.com wrote:

 Hi,
 How can we use more than one layout file.
 I have implemented a cutom dialog.That means i have created an layout file
 for dialog.
 And one layout file for my activity.
 But whatever the UI items in dialog layout ile if iam using them by
 findViewById it is giving me null

 I will explain indetails here
 @Override
 public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.main);
 applicationContext=getApplicationContext();

  Dialogfolder=new Dialog(this);
 folder.setTitle(Creating folder);
 folder.setContentView(R.layout.create_folder);
   TextView tv=findViewById(R.id.folder_text); //Here folder_text is
 in my second layoutfile ie in create_folder.xml
 //In the above statemet i got the null to tv variable.
 folder.show();

 }

 Any suggestions please

 Regards,
 Karteek

 --
 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.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Developing a C++ static library for use with Java on the Android

2010-04-29 Thread FrankG
Hello Kelly,

I would not say this can be so easy at the end.

Josh says he want to use a static library, but with JNI
he need to use a dynamic one or at least a dynamic lib which wraps
the static one. And even with this wrapper he can run into linker
problems
not finding all symbols. It can be a nightmare at the end,
but it depends from the complexity of his C++ stuff.

Good luck !
  Frank



On 28 Apr., 19:41, Kelly senor...@gmail.com wrote:
 Download the android NDK and see how they use libraries. Just reverse
 engineer their very simple JNI projects and you can build yours no
 problem.


-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Kevin Gaudin
Nexus One received in France ! No FroYo but a french power adapter :)

Sent by Brightpoint from netherland via France Express.

THANK YOU GOOGLE 

On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:
 -The only way to get a free phone from Apple is to go and get a drink
 with Gray
 Powell.

 Hmmm, last time I checked Apple didn't promise one either!

 What Google is up to with this seeding joke (which obviously is
 nothing) it's ignorance, pure and simple.
 Fake promises are far more worse than no promises. I'm off to IPhone!

 On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com wrote:

  On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com wrote:

   The only way to get a free phone from Apple is to go and get a drink with 
   Gray
   Powell.

  Haha, great one!

  --
  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 options, visit this group 
  athttp://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Date Picker Limit

2010-04-29 Thread Chirayu Dalwadi
How to limit date picker for six months from today's date?

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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

2010-04-29 Thread amiuhle
Yay, that's awesome!

Congratulations!

*keeps looking out of the window*

On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:
 Nexus One received in France ! No FroYo but a french power adapter :)

 Sent by Brightpoint from netherland via France Express.

 THANK YOU GOOGLE 

 On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:





  -The only way to get a free phone from Apple is to go and get a drink
  with Gray
  Powell.

  Hmmm, last time I checked Apple didn't promise one either!

  What Google is up to with this seeding joke (which obviously is
  nothing) it's ignorance, pure and simple.
  Fake promises are far more worse than no promises. I'm off to IPhone!

  On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com wrote:

   On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com wrote:

The only way to get a free phone from Apple is to go and get a drink 
with Gray
Powell.

   Haha, great one!

   --
   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 options, visit this group 
   athttp://groups.google.com/group/android-developers?hl=en

  --
  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 options, visit this group 
  athttp://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Lim Sim
That was close. I was just about to head out to get an iphone. Haha.

On Apr 29, 2010 8:03 AM, Kevin Gaudin kevin.gau...@gmail.com wrote:

Nexus One received in France ! No FroYo but a french power adapter :)

Sent by Brightpoint from netherland via France Express.

THANK YOU GOOGLE 


On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:
 -The only way to get a free phone f...

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Activity receiving messages after onDestroy

2010-04-29 Thread skink


On Apr 28, 6:02 pm, davidj blahblah...@gmail.com wrote:
 I have an Activity with an inner Handler. The problem is that after
 the activity is destroyed, the Handler is receiving messages for the
 destroyed activity. This breaks things because the activity is in an
 inconsistent state.

 I'm thinking this might be a bug in Android - it should probably
 delete all the messages in the queue when the activity is destroyed.
 There doesn't appear to be any way I can manually delete all messages
 in the queue (except by calling removeMessage(int what) with every
 possible variation of what, which seems a bit ridiculous).

use removeCallbacksAndMessages(null)

pskink

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Benjamin Rosseaux
How long have you waited for it?

On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:
 Nexus One received in France ! No FroYo but a french power adapter :)

 Sent by Brightpoint from netherland via France Express.

 THANK YOU GOOGLE 

 On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:



  -The only way to get a free phone from Apple is to go and get a drink
  with Gray
  Powell.

  Hmmm, last time I checked Apple didn't promise one either!

  What Google is up to with this seeding joke (which obviously is
  nothing) it's ignorance, pure and simple.
  Fake promises are far more worse than no promises. I'm off to IPhone!

  On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com wrote:

   On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com wrote:

The only way to get a free phone from Apple is to go and get a drink 
with Gray
Powell.

   Haha, great one!

   --
   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 options, visit this group 
   athttp://groups.google.com/group/android-developers?hl=en

  --
  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 options, visit this group 
  athttp://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread ratson
I think this is the time when you shall really post to this forum if
you have received your N1. :) someone has the time to create a gmaps
mashup? :)
patiently waiting for mine in Hungary

On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com wrote:
 How long have you waited for it?

 On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:



  Nexus One received in France ! No FroYo but a french power adapter :)

  Sent by Brightpoint from netherland via France Express.

  THANK YOU GOOGLE 

  On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:

   -The only way to get a free phone from Apple is to go and get a drink
   with Gray
   Powell.

   Hmmm, last time I checked Apple didn't promise one either!

   What Google is up to with this seeding joke (which obviously is
   nothing) it's ignorance, pure and simple.
   Fake promises are far more worse than no promises. I'm off to IPhone!

   On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com wrote:

On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com wrote:

 The only way to get a free phone from Apple is to go and get a drink 
 with Gray
 Powell.

Haha, great one!

--
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 options, visit this group 
athttp://groups.google.com/group/android-developers?hl=en

   --
   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 options, visit this group 
   athttp://groups.google.com/group/android-developers?hl=en

  --
  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 options, visit this group 
  athttp://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Frame by Frame Animation using java not happening

2010-04-29 Thread Nithin

It working , i just change the time duration for each frame and its
working..

Nithin

On Apr 29, 11:04 am, Nithin nithin.war...@gmail.com wrote:
 Hi,

 I am doing frame by frame Animation in java. I created bitmap,
 converted to drawable and added all the drawable to AnimationDrawable
 using addFrame() and set the time duration. Then I created a timer and
 and and inside that , I am calling animationDrawable.start(), but its
 showing only the first frame, animation is not taking place. I am
 doing this in a class which extends ImageView and to this class I am
 setting the setBackgroundDrawable() to my animationDrawable

 Nithin

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread ratson
WOW i just got confirmation from local FedEx, my N1 will arrive today
or by latest tomorrow :)
i have called them and told the destination address, so they could
tell me the tracking number.
thank you google ;)

On ápr. 29, 09:40, ratson materem...@gmail.com wrote:
 I think this is the time when you shall really post to this forum if
 you have received your N1. :) someone has the time to create a gmaps
 mashup? :)
 patiently waiting for mine in Hungary

 On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com wrote:



  How long have you waited for it?

  On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:

   Nexus One received in France ! No FroYo but a french power adapter :)

   Sent by Brightpoint from netherland via France Express.

   THANK YOU GOOGLE 

   On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:

-The only way to get a free phone from Apple is to go and get a drink
with Gray
Powell.

Hmmm, last time I checked Apple didn't promise one either!

What Google is up to with this seeding joke (which obviously is
nothing) it's ignorance, pure and simple.
Fake promises are far more worse than no promises. I'm off to IPhone!

On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com wrote:

 On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com wrote:

  The only way to get a free phone from Apple is to go and get a 
  drink with Gray
  Powell.

 Haha, great one!

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

--
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 options, visit this group 
athttp://groups.google.com/group/android-developers?hl=en

   --
   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 options, visit this group 
   athttp://groups.google.com/group/android-developers?hl=en

  --
  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 options, visit this group 
  athttp://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Olivier Bonal
@Kevin: Where do you live? Paris? I'm in Marseille, I guess it may take a
bit longer for Fedex to come down here but it means I'll probably get it
this week. Thanks for your post! :-)

Olivier.

On Thu, Apr 29, 2010 at 9:03 AM, Kevin Gaudin kevin.gau...@gmail.comwrote:

 Nexus One received in France ! No FroYo but a french power adapter :)

 Sent by Brightpoint from netherland via France Express.

 THANK YOU GOOGLE 

 On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:
  -The only way to get a free phone from Apple is to go and get a drink
  with Gray
  Powell.
 
  Hmmm, last time I checked Apple didn't promise one either!
 
  What Google is up to with this seeding joke (which obviously is
  nothing) it's ignorance, pure and simple.
  Fake promises are far more worse than no promises. I'm off to IPhone!
 
  On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com wrote:
 
   On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com wrote:
 
The only way to get a free phone from Apple is to go and get a drink
 with Gray
Powell.
 
   Haha, great one!
 
   --
   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.comandroid-developers%2bunsubscr...@googlegroups.com
   For more options, visit this group athttp://
 groups.google.com/group/android-developers?hl=en
 
  --
  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.comandroid-developers%2bunsubscr...@googlegroups.com
  For more options, visit this group athttp://
 groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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

2010-04-29 Thread cannehal
Here is link to map. You can add your location (not exact of course)
there when you receive your phone.

http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
109593402120975111968.0004855b7d8eefa5f649b

On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:
 WOW i just got confirmation from local FedEx, my N1 will arrive today
 or by latest tomorrow :)
 i have called them and told the destination address, so they could
 tell me the tracking number.
 thank you google ;)

 On ápr. 29, 09:40, ratson materem...@gmail.com wrote:





  I think this is the time when you shall really post to this forum if
  you have received your N1. :) someone has the time to create a gmaps
  mashup? :)
  patiently waiting for mine in Hungary

  On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com wrote:

   How long have you waited for it?

   On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:

Nexus One received in France ! No FroYo but a french power adapter :)

Sent by Brightpoint from netherland via France Express.

THANK YOU GOOGLE 

On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:

 -The only way to get a free phone from Apple is to go and get a drink
 with Gray
 Powell.

 Hmmm, last time I checked Apple didn't promise one either!

 What Google is up to with this seeding joke (which obviously is
 nothing) it's ignorance, pure and simple.
 Fake promises are far more worse than no promises. I'm off to IPhone!

 On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com wrote:

  On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com wrote:

   The only way to get a free phone from Apple is to go and get a 
   drink with Gray
   Powell.

  Haha, great one!

  --
  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 options, visit this group 
  athttp://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

--
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 options, visit this group 
athttp://groups.google.com/group/android-developers?hl=en

   --
   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 options, visit this group 
   athttp://groups.google.com/group/android-developers?hl=en

  --
  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 options, visit this group 
  athttp://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Lim Sim
Maybe when google sent the emails out they made a typo.  What they really
meant was one to two months. Haha.

On Apr 29, 2010 9:07 AM, Olivier Bonal olivier.bo...@gmail.com wrote:

@Kevin: Where do you live? Paris? I'm in Marseille, I guess it may take a
bit longer for Fedex to come down here but it means I'll probably get it
this week. Thanks for your post! :-)

Olivier.



On Thu, Apr 29, 2010 at 9:03 AM, Kevin Gaudin kevin.gau...@gmail.com
wrote:

 Nexus One receiv...

-- 
You received this message because you are subscribed to the Google
Groups Android Developers g...

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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

2010-04-29 Thread mscwd01
Yes! Thanks Google.

My Nexus One arrived via FedEx today. I live in the UK and it was
shipped via Brightpoint Netherlands.

Thanks again!


On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
 Here is link to map. You can add your location (not exact of course)
 there when you receive your phone.

 http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
 109593402120975111968.0004855b7d8eefa5f649b

 On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:





  WOW i just got confirmation from local FedEx, my N1 will arrive today
  or by latest tomorrow :)
  i have called them and told the destination address, so they could
  tell me the tracking number.
  thank you google ;)

  On ápr. 29, 09:40, ratson materem...@gmail.com wrote:

   I think this is the time when you shall really post to this forum if
   you have received your N1. :) someone has the time to create a gmaps
   mashup? :)
   patiently waiting for mine in Hungary

   On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com wrote:

How long have you waited for it?

On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:

 Nexus One received in France ! No FroYo but a french power adapter :)

 Sent by Brightpoint from netherland via France Express.

 THANK YOU GOOGLE 

 On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:

  -The only way to get a free phone from Apple is to go and get a 
  drink
  with Gray
  Powell.

  Hmmm, last time I checked Apple didn't promise one either!

  What Google is up to with this seeding joke (which obviously is
  nothing) it's ignorance, pure and simple.
  Fake promises are far more worse than no promises. I'm off to 
  IPhone!

  On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com wrote:

   On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com wrote:

The only way to get a free phone from Apple is to go and get a 
drink with Gray
Powell.

   Haha, great one!

   --
   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 options, visit this group 
   athttp://groups.google.com/group/android-developers?hl=en

  --
  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 options, visit this group 
  athttp://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

--
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 options, visit this group 
athttp://groups.google.com/group/android-developers?hl=en

   --
   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 options, visit this group 
   athttp://groups.google.com/group/android-developers?hl=en

  --
  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 options, visit this group 
  athttp://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 

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

2010-04-29 Thread Lim Sim
OK.  Now you've got me excited.  I'm in UK too!  haha.

On 29 April 2010 09:14, mscwd01 mscw...@gmail.com wrote:

 Yes! Thanks Google.

 My Nexus One arrived via FedEx today. I live in the UK and it was
 shipped via Brightpoint Netherlands.

 Thanks again!


 On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
  Here is link to map. You can add your location (not exact of course)
  there when you receive your phone.
 
  http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
  109593402120975111968.0004855b7d8eefa5f649b
 
  On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:
 
 
 
 
 
   WOW i just got confirmation from local FedEx, my N1 will arrive today
   or by latest tomorrow :)
   i have called them and told the destination address, so they could
   tell me the tracking number.
   thank you google ;)
 
   On ápr. 29, 09:40, ratson materem...@gmail.com wrote:
 
I think this is the time when you shall really post to this forum if
you have received your N1. :) someone has the time to create a gmaps
mashup? :)
patiently waiting for mine in Hungary
 
On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com wrote:
 
 How long have you waited for it?
 
 On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:
 
  Nexus One received in France ! No FroYo but a french power
 adapter :)
 
  Sent by Brightpoint from netherland via France Express.
 
  THANK YOU GOOGLE 
 
  On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:
 
   -The only way to get a free phone from Apple is to go and get
 a drink
   with Gray
   Powell.
 
   Hmmm, last time I checked Apple didn't promise one either!
 
   What Google is up to with this seeding joke (which obviously is
   nothing) it's ignorance, pure and simple.
   Fake promises are far more worse than no promises. I'm off to
 IPhone!
 
   On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com wrote:
 
On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com
 wrote:
 
 The only way to get a free phone from Apple is to go and
 get a drink with Gray
 Powell.
 
Haha, great one!
 
--
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.comandroid-developers%2bunsubscr...@googlegroups.com
For more options, visit this group athttp://
 groups.google.com/group/android-developers?hl=en
 
   --
   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.comandroid-developers%2bunsubscr...@googlegroups.com
   For more options, visit this group athttp://
 groups.google.com/group/android-developers?hl=en
 
  --
  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.comandroid-developers%2bunsubscr...@googlegroups.com
  For more options, visit this group athttp://
 groups.google.com/group/android-developers?hl=en
 
 --
 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.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group athttp://
 groups.google.com/group/android-developers?hl=en
 
--
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.comandroid-developers%2bunsubscr...@googlegroups.com
For more options, visit this group athttp://
 groups.google.com/group/android-developers?hl=en
 
   --
   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.comandroid-developers%2bunsubscr...@googlegroups.com
   For more options, visit this group athttp://
 groups.google.com/group/android-developers?hl=en
 
  --
  You received this message because you are subscribed to the Google
  Groups Android 

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

2010-04-29 Thread Pieter
I got mine also (in the Netherlands, delivered by FedEx). Actually
this is the second one as we also received one earlier for reaching
round 2 of ADC2.

Much obliged Google! We will sure put these devices to good use
testing.

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Service to Observe Contacts Addition and notify with the Application id through which contacts have been added or modified

2010-04-29 Thread Y2U
Hello All,

I want to develop a service which will monitor contacts of android
phone.
when ever a contact is added or updated this service will notify me
that a contact has been updated or modified with the application id
through which contact was added or modified.

Thanx in advance

Usman

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread mscwd01
Only slight issue is that it comes with a European (American?) wall
socket charger, so you will have to charge it via USB. (My old HTC
Hero charger isn't compatible)
I'm going to buy the dock today though so that will solve that
problem.

Anyway, having used a Hero before the N1 is amazing, I hope everyone
else gets their phone soon!

On Apr 29, 9:21 am, Pieter pie...@gamesquare.nl wrote:
 I got mine also (in the Netherlands, delivered by FedEx). Actually
 this is the second one as we also received one earlier for reaching
 round 2 of ADC2.

 Much obliged Google! We will sure put these devices to good use
 testing.

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread James
I just got a call from my wife - my phone just got delivered! That's
in Coventry, UK. Hooray!

James Ots

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Paul
\o/

Just got mine in Bremen, Germany.

(Fedex/ Brightpoint Netherlands)



On 29 Apr., 10:18, Lim Sim lim@gmail.com wrote:
 OK.  Now you've got me excited.  I'm in UK too!  haha.

 On 29 April 2010 09:14, mscwd01 mscw...@gmail.com wrote:





  Yes! Thanks Google.

  My Nexus One arrived via FedEx today. I live in the UK and it was
  shipped via Brightpoint Netherlands.

  Thanks again!

  On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
   Here is link to map. You can add your location (not exact of course)
   there when you receive your phone.

  http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
   109593402120975111968.0004855b7d8eefa5f649b

   On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:

WOW i just got confirmation from local FedEx, my N1 will arrive today
or by latest tomorrow :)
i have called them and told the destination address, so they could
tell me the tracking number.
thank you google ;)

On ápr. 29, 09:40, ratson materem...@gmail.com wrote:

 I think this is the time when you shall really post to this forum if
 you have received your N1. :) someone has the time to create a gmaps
 mashup? :)
 patiently waiting for mine in Hungary

 On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com wrote:

  How long have you waited for it?

  On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:

   Nexus One received in France ! No FroYo but a french power
  adapter :)

   Sent by Brightpoint from netherland via France Express.

   THANK YOU GOOGLE 

   On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:

-The only way to get a free phone from Apple is to go and get
  a drink
with Gray
Powell.

Hmmm, last time I checked Apple didn't promise one either!

What Google is up to with this seeding joke (which obviously is
nothing) it's ignorance, pure and simple.
Fake promises are far more worse than no promises. I'm off to
  IPhone!

On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com wrote:

 On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com
  wrote:

  The only way to get a free phone from Apple is to go and
  get a drink with Gray
  Powell.

 Haha, great one!

 --
 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.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

--
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.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

   --
   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.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

  --
  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.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

--
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] Re: Device Seeding Program for Top Android Market Developers

2010-04-29 Thread Joël Bourquard
Yesss !  Just received the package by FedEx Express in Geneva,
Switzerland.

I'm adding it to the map, too :-)

Thank you Google !  You rock :-D


On Apr 29, 10:30 am, Paul stuem...@gmail.com wrote:
 \o/

 Just got mine in Bremen, Germany.

 (Fedex/ Brightpoint Netherlands)

 On 29 Apr., 10:18, Lim Sim lim@gmail.com wrote:



  OK.  Now you've got me excited.  I'm in UK too!  haha.

  On 29 April 2010 09:14, mscwd01 mscw...@gmail.com wrote:

   Yes! Thanks Google.

   My Nexus One arrived via FedEx today. I live in the UK and it was
   shipped via Brightpoint Netherlands.

   Thanks again!

   On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
Here is link to map. You can add your location (not exact of course)
there when you receive your phone.

   http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
109593402120975111968.0004855b7d8eefa5f649b

On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:

 WOW i just got confirmation from local FedEx, my N1 will arrive today
 or by latest tomorrow :)
 i have called them and told the destination address, so they could
 tell me the tracking number.
 thank you google ;)

 On ápr. 29, 09:40, ratson materem...@gmail.com wrote:

  I think this is the time when you shall really post to this forum if
  you have received your N1. :) someone has the time to create a gmaps
  mashup? :)
  patiently waiting for mine in Hungary

  On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com wrote:

   How long have you waited for it?

   On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:

Nexus One received in France ! No FroYo but a french power
   adapter :)

Sent by Brightpoint from netherland via France Express.

THANK YOU GOOGLE 

On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:

 -The only way to get a free phone from Apple is to go and get
   a drink
 with Gray
 Powell.

 Hmmm, last time I checked Apple didn't promise one either!

 What Google is up to with this seeding joke (which obviously 
 is
 nothing) it's ignorance, pure and simple.
 Fake promises are far more worse than no promises. I'm off to
   IPhone!

 On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com wrote:

  On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com
   wrote:

   The only way to get a free phone from Apple is to go and
   get a drink with Gray
   Powell.

  Haha, great one!

  --
  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.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en

--
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.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en

   --
   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.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en

  --
  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.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  For more options, visit this group athttp://
   

[android-developers] Generate timer tick

2010-04-29 Thread Anandi
Hi all,

Is there any way to generate timer ticks of 10ms frequency in native
layer?

Thanks in advance.

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Genc
Got it!

UK, London!

On Apr 29, 9:18 am, Lim Sim lim@gmail.com wrote:
 OK.  Now you've got me excited.  I'm in UK too!  haha.

 On 29 April 2010 09:14, mscwd01 mscw...@gmail.com wrote:



  Yes! Thanks Google.

  My Nexus One arrived via FedEx today. I live in the UK and it was
  shipped via Brightpoint Netherlands.

  Thanks again!

  On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
   Here is link to map. You can add your location (not exact of course)
   there when you receive your phone.

  http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
   109593402120975111968.0004855b7d8eefa5f649b

   On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:

WOW i just got confirmation from local FedEx, my N1 will arrive today
or by latest tomorrow :)
i have called them and told the destination address, so they could
tell me the tracking number.
thank you google ;)

On ápr. 29, 09:40, ratson materem...@gmail.com wrote:

 I think this is the time when you shall really post to this forum if
 you have received your N1. :) someone has the time to create a gmaps
 mashup? :)
 patiently waiting for mine in Hungary

 On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com wrote:

  How long have you waited for it?

  On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:

   Nexus One received in France ! No FroYo but a french power
  adapter :)

   Sent by Brightpoint from netherland via France Express.

   THANK YOU GOOGLE 

   On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:

-The only way to get a free phone from Apple is to go and get
  a drink
with Gray
Powell.

Hmmm, last time I checked Apple didn't promise one either!

What Google is up to with this seeding joke (which obviously is
nothing) it's ignorance, pure and simple.
Fake promises are far more worse than no promises. I'm off to
  IPhone!

On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com wrote:

 On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com
  wrote:

  The only way to get a free phone from Apple is to go and
  get a drink with Gray
  Powell.

 Haha, great one!

 --
 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.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

--
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.comandroid-developers%2bunsubscr...@googlegroups.com
For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

   --
   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.comandroid-developers%2bunsubscr...@googlegroups.com
   For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

  --
  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.comandroid-developers%2bunsubscr...@googlegroups.com
  For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

--
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.comandroid-developers%2bunsubscr...@googlegroups.com
For more options, visit this group athttp://
 

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

2010-04-29 Thread piemm...@googlemail.com
Got mine, Milton Keynes, UK.

Cheers Google!

On Apr 29, 9:53 am, Genc gmt...@gmail.com wrote:
 Got it!

 UK, London!


-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Willem Stoker
Got it too here in the Netherlands. Delivered by FedEx, shipped from
Brightpoint NL and Belgium.

Thanks Google!

2010/4/29 Genc gmt...@gmail.com

 Got it!

 UK, London!

 On Apr 29, 9:18 am, Lim Sim lim@gmail.com wrote:
  OK.  Now you've got me excited.  I'm in UK too!  haha.
 
  On 29 April 2010 09:14, mscwd01 mscw...@gmail.com wrote:
 
 
 
   Yes! Thanks Google.
 
   My Nexus One arrived via FedEx today. I live in the UK and it was
   shipped via Brightpoint Netherlands.
 
   Thanks again!
 
   On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
Here is link to map. You can add your location (not exact of course)
there when you receive your phone.
 
   http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
109593402120975111968.0004855b7d8eefa5f649b
 
On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:
 
 WOW i just got confirmation from local FedEx, my N1 will arrive
 today
 or by latest tomorrow :)
 i have called them and told the destination address, so they could
 tell me the tracking number.
 thank you google ;)
 
 On ápr. 29, 09:40, ratson materem...@gmail.com wrote:
 
  I think this is the time when you shall really post to this forum
 if
  you have received your N1. :) someone has the time to create a
 gmaps
  mashup? :)
  patiently waiting for mine in Hungary
 
  On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com
 wrote:
 
   How long have you waited for it?
 
   On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com
 wrote:
 
Nexus One received in France ! No FroYo but a french power
   adapter :)
 
Sent by Brightpoint from netherland via France Express.
 
THANK YOU GOOGLE 
 
On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:
 
 -The only way to get a free phone from Apple is to go and
 get
   a drink
 with Gray
 Powell.
 
 Hmmm, last time I checked Apple didn't promise one either!
 
 What Google is up to with this seeding joke (which
 obviously is
 nothing) it's ignorance, pure and simple.
 Fake promises are far more worse than no promises. I'm off
 to
   IPhone!
 
 On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com
 wrote:
 
  On 27 Apr., 22:25, Olivier Bonal 
 olivier.bo...@gmail.com
   wrote:
 
   The only way to get a free phone from Apple is to go
 and
   get a drink with Gray
   Powell.
 
  Haha, great one!
 
  --
  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.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
  For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en
 
 --
 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.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
 For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en
 
--
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.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en
 
   --
   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.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
   For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en
 
  --
  You received this message because you are subscribed to the
 Google
  Groups Android Developers group.
  To post to this group, 

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

2010-04-29 Thread carknue


On Apr 29, 10:58 am, Willem Stoker willem.sto...@gmail.com wrote:
 Got it too here in the Netherlands. Delivered by FedEx, shipped from
 Brightpoint NL and Belgium.

 Thanks Google!

 2010/4/29 Genc gmt...@gmail.com



  Got it!

  UK, London!

  On Apr 29, 9:18 am, Lim Sim lim@gmail.com wrote:
   OK.  Now you've got me excited.  I'm in UK too!  haha.

   On 29 April 2010 09:14, mscwd01 mscw...@gmail.com wrote:

Yes! Thanks Google.

My Nexus One arrived via FedEx today. I live in the UK and it was
shipped via Brightpoint Netherlands.

Thanks again!

On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
 Here is link to map. You can add your location (not exact of course)
 there when you receive your phone.

http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
 109593402120975111968.0004855b7d8eefa5f649b

 On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:

  WOW i just got confirmation from local FedEx, my N1 will arrive
  today
  or by latest tomorrow :)
  i have called them and told the destination address, so they could
  tell me the tracking number.
  thank you google ;)

  On ápr. 29, 09:40, ratson materem...@gmail.com wrote:

   I think this is the time when you shall really post to this forum
  if
   you have received your N1. :) someone has the time to create a
  gmaps
   mashup? :)
   patiently waiting for mine in Hungary

   On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com
  wrote:

How long have you waited for it?

On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com
  wrote:

 Nexus One received in France ! No FroYo but a french power
adapter :)

 Sent by Brightpoint from netherland via France Express.

 THANK YOU GOOGLE 

 On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:

  -The only way to get a free phone from Apple is to go and
  get
a drink
  with Gray
  Powell.

  Hmmm, last time I checked Apple didn't promise one either!

  What Google is up to with this seeding joke (which
  obviously is
  nothing) it's ignorance, pure and simple.
  Fake promises are far more worse than no promises. I'm off
  to
IPhone!

  On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com
  wrote:

   On 27 Apr., 22:25, Olivier Bonal 
  olivier.bo...@gmail.com
wrote:

The only way to get a free phone from Apple is to go
  and
get a drink with Gray
Powell.

   Haha, great one!

   --
   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.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com

   For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

  --
  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.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com

  For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com

 For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

--
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.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com

For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

   --

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

2010-04-29 Thread carknue
Wow, I just got my nexus one with FedEx Express, shipped yesterday
from Holland with the correct power connector. Thank you Google!

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Benjamin Rosseaux
I got mine now also in Moenchengladbach, Germany. :-)

On 29 Apr., 10:30, Paul stuem...@gmail.com wrote:
 \o/

 Just got mine in Bremen, Germany.

 (Fedex/ Brightpoint Netherlands)

 On 29 Apr., 10:18, Lim Sim lim@gmail.com wrote:



  OK.  Now you've got me excited.  I'm in UK too!  haha.

  On 29 April 2010 09:14, mscwd01 mscw...@gmail.com wrote:

   Yes! Thanks Google.

   My Nexus One arrived via FedEx today. I live in the UK and it was
   shipped via Brightpoint Netherlands.

   Thanks again!

   On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
Here is link to map. You can add your location (not exact of course)
there when you receive your phone.

   http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
109593402120975111968.0004855b7d8eefa5f649b

On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:

 WOW i just got confirmation from local FedEx, my N1 will arrive today
 or by latest tomorrow :)
 i have called them and told the destination address, so they could
 tell me the tracking number.
 thank you google ;)

 On ápr. 29, 09:40, ratson materem...@gmail.com wrote:

  I think this is the time when you shall really post to this forum if
  you have received your N1. :) someone has the time to create a gmaps
  mashup? :)
  patiently waiting for mine in Hungary

  On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com wrote:

   How long have you waited for it?

   On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:

Nexus One received in France ! No FroYo but a french power
   adapter :)

Sent by Brightpoint from netherland via France Express.

THANK YOU GOOGLE 

On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:

 -The only way to get a free phone from Apple is to go and get
   a drink
 with Gray
 Powell.

 Hmmm, last time I checked Apple didn't promise one either!

 What Google is up to with this seeding joke (which obviously 
 is
 nothing) it's ignorance, pure and simple.
 Fake promises are far more worse than no promises. I'm off to
   IPhone!

 On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com wrote:

  On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com
   wrote:

   The only way to get a free phone from Apple is to go and
   get a drink with Gray
   Powell.

  Haha, great one!

  --
  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.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en

--
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.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en

   --
   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.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en

  --
  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.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en

 --
 You received this message because you are subscribed to the Google

[android-developers] Re: How to see all the applicat ions in the Google Market?

2010-04-29 Thread tobias429
Try those web-sites:

http://www.androlib.com
http://www.cyrket.com
http://www.androidpit.com
http://www.androidzoom.com

Anyone knows further sites?

On Apr 29, 8:30 am, Grant Jia jeasun...@gmail.com wrote:
 Hi, friends,

 The official web site just show the top applications both free and paid,
 where or how could I see all the applications in the market?
 Thanks.

 Best Regards,
 Grant

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] TabHost Problem

2010-04-29 Thread Chirayu Dalwadi
I'm developing an application in which i have few tabs.
In one tab i have a calender button and when i set date using that
button, the value of textview updates automatically.

Now the problem is that when i click another tab the value of textview
goes blank automatically
how to resolve this?

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Does any boby know how can control multitouch ???

2010-04-29 Thread Jackie
Actually I do not want to use multitouch..
but i do not know how can i control multi touch...

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Laik
My new Nexus One is just arrived (Rome, Italy)
Thank you Google!





On 29 Apr, 11:06, Benjamin Rosseaux benja...@rosseaux.com wrote:
 I got mine now also in Moenchengladbach, Germany. :-)

 On 29 Apr., 10:30, Paul stuem...@gmail.com wrote:



  \o/

  Just got mine in Bremen, Germany.

  (Fedex/ Brightpoint Netherlands)

  On 29 Apr., 10:18, Lim Sim lim@gmail.com wrote:

   OK.  Now you've got me excited.  I'm in UK too!  haha.

   On 29 April 2010 09:14, mscwd01 mscw...@gmail.com wrote:

Yes! Thanks Google.

My Nexus One arrived via FedEx today. I live in the UK and it was
shipped via Brightpoint Netherlands.

Thanks again!

On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
 Here is link to map. You can add your location (not exact of course)
 there when you receive your phone.

http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
 109593402120975111968.0004855b7d8eefa5f649b

 On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:

  WOW i just got confirmation from local FedEx, my N1 will arrive 
  today
  or by latest tomorrow :)
  i have called them and told the destination address, so they could
  tell me the tracking number.
  thank you google ;)

  On ápr. 29, 09:40, ratson materem...@gmail.com wrote:

   I think this is the time when you shall really post to this forum 
   if
   you have received your N1. :) someone has the time to create a 
   gmaps
   mashup? :)
   patiently waiting for mine in Hungary

   On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com 
   wrote:

How long have you waited for it?

On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:

 Nexus One received in France ! No FroYo but a french power
adapter :)

 Sent by Brightpoint from netherland via France Express.

 THANK YOU GOOGLE 

 On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:

  -The only way to get a free phone from Apple is to go and 
  get
a drink
  with Gray
  Powell.

  Hmmm, last time I checked Apple didn't promise one either!

  What Google is up to with this seeding joke (which 
  obviously is
  nothing) it's ignorance, pure and simple.
  Fake promises are far more worse than no promises. I'm off 
  to
IPhone!

  On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com 
  wrote:

   On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com
wrote:

The only way to get a free phone from Apple is to go and
get a drink with Gray
Powell.

   Haha, great one!

   --
   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.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

  --
  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.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

--
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.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

   --
   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 

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

2010-04-29 Thread Thomas Riley
FedEx just confirmed my new phone will be delivered in the next 90
minutes! ;)

On Apr 29, 10:06 am, Benjamin Rosseaux benja...@rosseaux.com wrote:
 I got mine now also in Moenchengladbach, Germany. :-)

 On 29 Apr., 10:30, Paul stuem...@gmail.com wrote:





  \o/

  Just got mine in Bremen, Germany.

  (Fedex/ Brightpoint Netherlands)

  On 29 Apr., 10:18, Lim Sim lim@gmail.com wrote:

   OK.  Now you've got me excited.  I'm in UK too!  haha.

   On 29 April 2010 09:14, mscwd01 mscw...@gmail.com wrote:

Yes! Thanks Google.

My Nexus One arrived via FedEx today. I live in the UK and it was
shipped via Brightpoint Netherlands.

Thanks again!

On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
 Here is link to map. You can add your location (not exact of course)
 there when you receive your phone.

http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
 109593402120975111968.0004855b7d8eefa5f649b

 On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:

  WOW i just got confirmation from local FedEx, my N1 will arrive 
  today
  or by latest tomorrow :)
  i have called them and told the destination address, so they could
  tell me the tracking number.
  thank you google ;)

  On ápr. 29, 09:40, ratson materem...@gmail.com wrote:

   I think this is the time when you shall really post to this forum 
   if
   you have received your N1. :) someone has the time to create a 
   gmaps
   mashup? :)
   patiently waiting for mine in Hungary

   On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com 
   wrote:

How long have you waited for it?

On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:

 Nexus One received in France ! No FroYo but a french power
adapter :)

 Sent by Brightpoint from netherland via France Express.

 THANK YOU GOOGLE 

 On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:

  -The only way to get a free phone from Apple is to go and 
  get
a drink
  with Gray
  Powell.

  Hmmm, last time I checked Apple didn't promise one either!

  What Google is up to with this seeding joke (which 
  obviously is
  nothing) it's ignorance, pure and simple.
  Fake promises are far more worse than no promises. I'm off 
  to
IPhone!

  On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com 
  wrote:

   On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com
wrote:

The only way to get a free phone from Apple is to go and
get a drink with Gray
Powell.

   Haha, great one!

   --
   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.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

  --
  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.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

--
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.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

   --
   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 

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

2010-04-29 Thread David Horn
Fedex UK shows mine in transit and due for delivery tomorrow in the
UK. :-)

On Apr 29, 10:06 am, Benjamin Rosseaux benja...@rosseaux.com wrote:
 I got mine now also in Moenchengladbach, Germany. :-)

 On 29 Apr., 10:30, Paul stuem...@gmail.com wrote:





  \o/

  Just got mine in Bremen, Germany.

  (Fedex/ Brightpoint Netherlands)

  On 29 Apr., 10:18, Lim Sim lim@gmail.com wrote:

   OK.  Now you've got me excited.  I'm in UK too!  haha.

   On 29 April 2010 09:14, mscwd01 mscw...@gmail.com wrote:

Yes! Thanks Google.

My Nexus One arrived via FedEx today. I live in the UK and it was
shipped via Brightpoint Netherlands.

Thanks again!

On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
 Here is link to map. You can add your location (not exact of course)
 there when you receive your phone.

http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
 109593402120975111968.0004855b7d8eefa5f649b

 On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:

  WOW i just got confirmation from local FedEx, my N1 will arrive 
  today
  or by latest tomorrow :)
  i have called them and told the destination address, so they could
  tell me the tracking number.
  thank you google ;)

  On ápr. 29, 09:40, ratson materem...@gmail.com wrote:

   I think this is the time when you shall really post to this forum 
   if
   you have received your N1. :) someone has the time to create a 
   gmaps
   mashup? :)
   patiently waiting for mine in Hungary

   On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com 
   wrote:

How long have you waited for it?

On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:

 Nexus One received in France ! No FroYo but a french power
adapter :)

 Sent by Brightpoint from netherland via France Express.

 THANK YOU GOOGLE 

 On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:

  -The only way to get a free phone from Apple is to go and 
  get
a drink
  with Gray
  Powell.

  Hmmm, last time I checked Apple didn't promise one either!

  What Google is up to with this seeding joke (which 
  obviously is
  nothing) it's ignorance, pure and simple.
  Fake promises are far more worse than no promises. I'm off 
  to
IPhone!

  On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com 
  wrote:

   On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com
wrote:

The only way to get a free phone from Apple is to go and
get a drink with Gray
Powell.

   Haha, great one!

   --
   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.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

  --
  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.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

--
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.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

   --
   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 

Re: [android-developers] Re: Extracting colors from Themes?

2010-04-29 Thread Mariano Kamp
Hey Pat.

Thanks for your chipping in.

No, I could also hardcode the colors and that is what it seems I will have
to do. In my particular case it won't make much difference at the moment.
For now I just need two values and they correspond to the light and dark.
But for the future my needs will grow and it is also not so much fun to
maintain a shadow theme administration on the side.

I would have preferred to be a model citizen on the Android platform and use
the themes. Hardcoding might be the quickest solution, but would fail if I
want to use platform properties that are overwritten by vendor themes.
To give you an example. On a stock Android device you'll see an orange
background behind a selected list item, on an HTC sense device it would be
green instead.

Also as themes look so central to me, I was kind of hoping that I just
missed the relevant documentation and that somebody else would point me to
RTFM ;-)

Cheers
Mariano

On Tue, Apr 27, 2010 at 9:38 AM, patbenatar patbena...@gmail.com wrote:

Do you need to be doing this programatically? You could always take a
screenshot of your phone [either using DDMS on a non-rooted device or
the PicMe app on a rooted device] and then grab the colors using
Photoshop or any image editing software. Another option, again not
programmatic, would be to download the Android source [or you can
browse it online in the Git repo] and find the declarations for those
colors.

-Nick


On Apr 26, 3:23 am, Mariano Kamp mariano.k...@gmail.com wrote:
 Hi,

 I want to use colors from a Theme to apply it to HTML my app is rendering.
I
 am wondering if I can do that?

 I am looking to use colors like they are specified in themes.xml:

 item
 name=colorForeground@android:color/bright_foreground_dark/item
 ..
 item name=colorBackground@android:color/background_dark/item
 ..
 item
 name=textColorPrimary@android:color/primary_text_dark/item
 ..

 So it looks to me those are declared in the same way.

 When trying to access those values this way:

 TypedValue tv = new TypedValue();
 getTheme().resolveAttribute(android.R.attr.colorBackground, tv,
 true);

 System.out.println(tv.string= + tv.string);
 System.out.println(tv.coerced= + tv.coerceToString());

 int colorResourceId = getResources().getColor(tv.resourceId);
 System.out.println(colorResourceId= + colorResourceId);

 tv = new TypedValue();
 getTheme().resolveAttribute(android.R.attr.textColorPrimary, tv,
 true);

 System.out.println(tv.string= + tv.string);
 System.out.println(tv.coerced= + tv.coerceToString());

 colorResourceId = getResources().getColor(tv.resourceId);
 System.out.println(colorResourceId= + colorResourceId);

 I get this as a result:

 I/System.out( 1578): tv.string=null
 I/System.out( 1578): tv.coerced=#
 I/System.out( 1578): colorResourceId=-1

 I/System.out( 1578): tv.string=res/color/primary_text_light.xml
 I/System.out( 1578): tv.coerced=res/color/primary_text_light.xml
 I/System.out( 1578): colorResourceId=-16777216

 The results are different. The first one actually gives me the color
 #fff which would work for me, the second one only gives me an xml.

 Do I need to jump through a few more hoops here to resolve the actual
color?
 Does my original intention work at all? Maybe it won't work, because
colors
 could be arbitrary drawables?

 I didn't find any relevant documentation, but if you know any, just point
me
 there please.

 Btw. I also tried obtainStyledAttributes(), but this had basically the
same
 issues.

 Cheers,
 Mariano


 --
 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.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

--
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.comandroid-developers%2bunsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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

2010-04-29 Thread Mark Gjøl
How do you see this? What do you search for?

On Apr 29, 11:45 am, David Horn pga...@gmail.com wrote:
 Fedex UK shows mine in transit and due for delivery tomorrow in the
 UK. :-)

 On Apr 29, 10:06 am, Benjamin Rosseaux benja...@rosseaux.com wrote:



  I got mine now also in Moenchengladbach, Germany. :-)

  On 29 Apr., 10:30, Paul stuem...@gmail.com wrote:

   \o/

   Just got mine in Bremen, Germany.

   (Fedex/ Brightpoint Netherlands)

   On 29 Apr., 10:18, Lim Sim lim@gmail.com wrote:

OK.  Now you've got me excited.  I'm in UK too!  haha.

On 29 April 2010 09:14, mscwd01 mscw...@gmail.com wrote:

 Yes! Thanks Google.

 My Nexus One arrived via FedEx today. I live in the UK and it was
 shipped via Brightpoint Netherlands.

 Thanks again!

 On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
  Here is link to map. You can add your location (not exact of course)
  there when you receive your phone.

 http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
  109593402120975111968.0004855b7d8eefa5f649b

  On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:

   WOW i just got confirmation from local FedEx, my N1 will arrive 
   today
   or by latest tomorrow :)
   i have called them and told the destination address, so they could
   tell me the tracking number.
   thank you google ;)

   On ápr. 29, 09:40, ratson materem...@gmail.com wrote:

I think this is the time when you shall really post to this 
forum if
you have received your N1. :) someone has the time to create a 
gmaps
mashup? :)
patiently waiting for mine in Hungary

On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com 
wrote:

 How long have you waited for it?

 On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com 
 wrote:

  Nexus One received in France ! No FroYo but a french power
 adapter :)

  Sent by Brightpoint from netherland via France Express.

  THANK YOU GOOGLE 

  On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:

   -The only way to get a free phone from Apple is to go 
   and get
 a drink
   with Gray
   Powell.

   Hmmm, last time I checked Apple didn't promise one either!

   What Google is up to with this seeding joke (which 
   obviously is
   nothing) it's ignorance, pure and simple.
   Fake promises are far more worse than no promises. I'm 
   off to
 IPhone!

   On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com 
   wrote:

On 27 Apr., 22:25, Olivier Bonal 
olivier.bo...@gmail.com
 wrote:

 The only way to get a free phone from Apple is to go 
 and
 get a drink with Gray
 Powell.

Haha, great one!

--
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.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
For more options, visit this group athttp://
 groups.google.com/group/android-developers?hl=en

   --
   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.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   For more options, visit this group athttp://
 groups.google.com/group/android-developers?hl=en

  --
  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.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  For more options, visit this group athttp://
 groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 For more options, visit this group athttp://
 

[android-developers] Re: How to overlay a GLSurfaceview on a surfaceview?

2010-04-29 Thread Paolo
Hi Max,

I've found the solution here: http://nhenze.net/?p=172

Thanks to all. ;)

On 28 Apr, 18:10, Max Gilead max.gil...@gmail.com wrote:
 On 27 April 2010 09:16, Paolo brand...@gmail.com wrote:

  is there anyone who knows how to overlay a GLSurfaceview on a
  Surfaceview? The Surfaceview is used for the camera preview.

 You can put camera preview image on a textured quad and render it in the
 background (reset camera to ortho view, render background, set camera to
 regular scene transform, render scene).

 HTH,
 Max

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Olivier Bonal
Just got mine in Marseille France

Thank you Google!!! Thank you ! Thank you! :-)


On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl bitflips...@gmail.com wrote:

 How do you see this? What do you search for?

 On Apr 29, 11:45 am, David Horn pga...@gmail.com wrote:
  Fedex UK shows mine in transit and due for delivery tomorrow in the
  UK. :-)
 
  On Apr 29, 10:06 am, Benjamin Rosseaux benja...@rosseaux.com wrote:
 
 
 
   I got mine now also in Moenchengladbach, Germany. :-)
 
   On 29 Apr., 10:30, Paul stuem...@gmail.com wrote:
 
\o/
 
Just got mine in Bremen, Germany.
 
(Fedex/ Brightpoint Netherlands)
 
On 29 Apr., 10:18, Lim Sim lim@gmail.com wrote:
 
 OK.  Now you've got me excited.  I'm in UK too!  haha.
 
 On 29 April 2010 09:14, mscwd01 mscw...@gmail.com wrote:
 
  Yes! Thanks Google.
 
  My Nexus One arrived via FedEx today. I live in the UK and it was
  shipped via Brightpoint Netherlands.
 
  Thanks again!
 
  On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
   Here is link to map. You can add your location (not exact of
 course)
   there when you receive your phone.
 
  http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
   109593402120975111968.0004855b7d8eefa5f649b
 
   On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:
 
WOW i just got confirmation from local FedEx, my N1 will
 arrive today
or by latest tomorrow :)
i have called them and told the destination address, so they
 could
tell me the tracking number.
thank you google ;)
 
On ápr. 29, 09:40, ratson materem...@gmail.com wrote:
 
 I think this is the time when you shall really post to this
 forum if
 you have received your N1. :) someone has the time to
 create a gmaps
 mashup? :)
 patiently waiting for mine in Hungary
 
 On ápr. 29, 09:35, Benjamin Rosseaux 
 benja...@rosseaux.com wrote:
 
  How long have you waited for it?
 
  On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com
 wrote:
 
   Nexus One received in France ! No FroYo but a french
 power
  adapter :)
 
   Sent by Brightpoint from netherland via France Express.
 
   THANK YOU GOOGLE 
 
   On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu
 wrote:
 
-The only way to get a free phone from Apple is to
 go and get
  a drink
with Gray
Powell.
 
Hmmm, last time I checked Apple didn't promise one
 either!
 
What Google is up to with this seeding joke (which
 obviously is
nothing) it's ignorance, pure and simple.
Fake promises are far more worse than no promises.
 I'm off to
  IPhone!
 
On 28 Apr, 09:37, amiuhle 
 timouhlm...@googlemail.com wrote:
 
 On 27 Apr., 22:25, Olivier Bonal 
 olivier.bo...@gmail.com
  wrote:
 
  The only way to get a free phone from Apple is to
 go and
  get a drink with Gray
  Powell.
 
 Haha, great one!
 
 --
 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.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
 For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en
 
--
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.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en
 
   --
   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.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
   For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en
 
  --
  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: Device Seeding Program for Top Android Market Developers

2010-04-29 Thread Al
Apparently mine arrive today aswell, london uk :D, wish i could get
home now!

Thanks google!

On Apr 29, 11:08 am, Olivier Bonal olivier.bo...@gmail.com wrote:
 Just got mine in Marseille France

 Thank you Google!!! Thank you ! Thank you! :-)



 On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl bitflips...@gmail.com wrote:
  How do you see this? What do you search for?

  On Apr 29, 11:45 am, David Horn pga...@gmail.com wrote:
   Fedex UK shows mine in transit and due for delivery tomorrow in the
   UK. :-)

   On Apr 29, 10:06 am, Benjamin Rosseaux benja...@rosseaux.com wrote:

I got mine now also in Moenchengladbach, Germany. :-)

On 29 Apr., 10:30, Paul stuem...@gmail.com wrote:

 \o/

 Just got mine in Bremen, Germany.

 (Fedex/ Brightpoint Netherlands)

 On 29 Apr., 10:18, Lim Sim lim@gmail.com wrote:

  OK.  Now you've got me excited.  I'm in UK too!  haha.

  On 29 April 2010 09:14, mscwd01 mscw...@gmail.com wrote:

   Yes! Thanks Google.

   My Nexus One arrived via FedEx today. I live in the UK and it was
   shipped via Brightpoint Netherlands.

   Thanks again!

   On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
Here is link to map. You can add your location (not exact of
  course)
there when you receive your phone.

   http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
109593402120975111968.0004855b7d8eefa5f649b

On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:

 WOW i just got confirmation from local FedEx, my N1 will
  arrive today
 or by latest tomorrow :)
 i have called them and told the destination address, so they
  could
 tell me the tracking number.
 thank you google ;)

 On ápr. 29, 09:40, ratson materem...@gmail.com wrote:

  I think this is the time when you shall really post to this
  forum if
  you have received your N1. :) someone has the time to
  create a gmaps
  mashup? :)
  patiently waiting for mine in Hungary

  On ápr. 29, 09:35, Benjamin Rosseaux 
  benja...@rosseaux.com wrote:

   How long have you waited for it?

   On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com
  wrote:

Nexus One received in France ! No FroYo but a french
  power
   adapter :)

Sent by Brightpoint from netherland via France Express.

THANK YOU GOOGLE 

On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu
  wrote:

 -The only way to get a free phone from Apple is to
  go and get
   a drink
 with Gray
 Powell.

 Hmmm, last time I checked Apple didn't promise one
  either!

 What Google is up to with this seeding joke (which
  obviously is
 nothing) it's ignorance, pure and simple.
 Fake promises are far more worse than no promises.
  I'm off to
   IPhone!

 On 28 Apr, 09:37, amiuhle 
  timouhlm...@googlemail.com wrote:

  On 27 Apr., 22:25, Olivier Bonal 
  olivier.bo...@gmail.com
   wrote:

   The only way to get a free phone from Apple is to
  go and
   get a drink with Gray
   Powell.

  Haha, great one!

  --
  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.comandroid-developers%2Bunsubs
   cr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
  For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2Bunsubs
  cr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en

--
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.comandroid-developers%2Bunsubs
 cr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
For more 

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

2010-04-29 Thread Mads Kalør
Looking forward to receiving mine, but how do you check your delivery
status? We don't have a tracking number, do we?

Den 4 29, 2010 12:14 PM skrev Al alcapw...@googlemail.com:

Apparently mine arrive today aswell, london uk :D, wish i could get
home now!

Thanks google!

On Apr 29, 11:08 am, Olivier Bonal olivier.bo...@gmail.com wrote:  Just
got mine in Marseille Fr...

 On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl bitflips...@gmail.com wrote:
  How do you see this...
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com   For more options,
visit this group athttp://...
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com  For more options,
visit this group athttp:// ...
android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com For more options, visit
this group athttp://  ...
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comFor more options, visit
this group athttp://   ...
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com   For more options, visit this
group athttp://...
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com  For more options, visit this
group athttp:// ...
android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com For more options, visit this
group athttp://  ...
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comFor more options, visit this group
at   http://...

  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@google...
 ...

 read more »

--

You received this message because you are subscribed to the Google Groups
Android Developers 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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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

2010-04-29 Thread westmeadboy
Can anyone confirm which type of 3G is supported by the Nexus One
received in europe?

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Andreas Reuterberg
We got ours in the office in London now! But still haven't received
the one I'm supposed to be getting at home in Seaford.

/Andreas


On Thu, Apr 29, 2010 at 11:18 AM, Mads Kalør mkal...@gmail.com wrote:
 Looking forward to receiving mine, but how do you check your delivery
 status? We don't have a tracking number, do we?

 Den 4 29, 2010 12:14 PM skrev Al alcapw...@googlemail.com:

 Apparently mine arrive today aswell, london uk :D, wish i could get
 home now!

 Thanks google!

 On Apr 29, 11:08 am, Olivier Bonal olivier.bo...@gmail.com wrote:  Just
 got mine in Marseille Fr...

 On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl bitflips...@gmail.com wrote:
   How do you see this...

 
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com   For more options,
  visit this group athttp://...


 android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com  For more options,
  visit this group athttp:// ...

   
android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com For more options, visit
  this group athttp://  ...

  
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comFor more options, visit
  this group athttp://   ...

 
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com   For more options, visit this
  group athttp://...


 android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com  For more options, visit this
  group athttp:// ...

   
android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com For more options, visit this
  group athttp://  ...

  
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comFor more options, visit this group
  at   http://...

 
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@google...

 ...

 read more »

 --

 You received this message because you are subscribed to the Google Groups
 Android Developers 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Amir Alagic
One friend of mine got Nexus One in Sweden. FedEx - Brightpoint

On Apr 29, 10:18 am, Lim Sim lim@gmail.com wrote:
 OK.  Now you've got me excited.  I'm in UK too!  haha.

 On 29 April 2010 09:14, mscwd01 mscw...@gmail.com wrote:





  Yes! Thanks Google.

  My Nexus One arrived via FedEx today. I live in the UK and it was
  shipped via Brightpoint Netherlands.

  Thanks again!

  On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
   Here is link to map. You can add your location (not exact of course)
   there when you receive your phone.

  http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
   109593402120975111968.0004855b7d8eefa5f649b

   On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:

WOW i just got confirmation from local FedEx, my N1 will arrive today
or by latest tomorrow :)
i have called them and told the destination address, so they could
tell me the tracking number.
thank you google ;)

On ápr. 29, 09:40, ratson materem...@gmail.com wrote:

 I think this is the time when you shall really post to this forum if
 you have received your N1. :) someone has the time to create a gmaps
 mashup? :)
 patiently waiting for mine in Hungary

 On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com wrote:

  How long have you waited for it?

  On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:

   Nexus One received in France ! No FroYo but a french power
  adapter :)

   Sent by Brightpoint from netherland via France Express.

   THANK YOU GOOGLE 

   On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:

-The only way to get a free phone from Apple is to go and get
  a drink
with Gray
Powell.

Hmmm, last time I checked Apple didn't promise one either!

What Google is up to with this seeding joke (which obviously is
nothing) it's ignorance, pure and simple.
Fake promises are far more worse than no promises. I'm off to
  IPhone!

On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com wrote:

 On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com
  wrote:

  The only way to get a free phone from Apple is to go and
  get a drink with Gray
  Powell.

 Haha, great one!

 --
 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.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

--
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.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

   --
   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.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

  --
  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.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

--
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

Re: [android-developers] Re: Service.startForeground() messes with scheduling?

2010-04-29 Thread Mariano Kamp
Now we have this great article:
http://android-developers.blogspot.com/2010/04/multitasking-android-way.html

Services can further negotiate this behavior by requesting they be
considered foreground. This places the service in a please don't kill
state, but requires that it include a notification to the user about it
actively running. This is useful for services such as background music
playback or car navigation, which the user is actively aware of; when you're
playing music and using the browser, you can always see the music-playing
glyph in the status bar. Android won't try to kill these services, but as a
trade-off, ensures the user knows about them and is able to explicitly stop
them when desired.

But like in the API documentation it doesn't mention that the thread/process
gets a prio boost when running with the foreground flag.

On Tue, Apr 13, 2010 at 6:42 PM, Mariano Kamp mariano.k...@gmail.comwrote:

 Ok, I'll explain in detail. There are two issues in this story: (a)
 killability of the service (b) execution prio of the service

 In the good old days I just
 used  Process.setThreadPriority(Process.THREAD_PRIORITY_LOWEST) in my
 service and things went wonderfully. My sync service ran and took as much
 CPU was available, but the foreground app got all it needed too.

 In rare cases my service was shot down, but as my service could deal with
 that it was more a matter of efficiency than of data loss, so it was ok.

 Progressively over time this happened more frequently though. With
 information from you that we discussed on this list the story looked to me
 like this: It became en vogue for many popular services to call
 setForeground(). That lead to my services being shot down much more
 frequently, to the point where it became really painful because my service
 sometimes didn't even last for two seconds.

 At the time I understood from what you said that I should consider calling
 setForeground() and that you will make it no-op in a future release and at
 the same time introduce a new API to replace the old one with the addition
 that a notification needs to be shown, so that the user sees what's going on
 and can punish apps that misuse this feature.

 Now it took some time for me to get to the new API, because I need to
 implement a useful notification first. To make the new notification useful I
 rewrote my progress reporting, introduced remote views etc. to show the sync
 phases and their progress in the notification. I also let the user set if
 s/he wants to see the notification and get the added stability or not.

 The old setForeground() only had an effect on the killability of the
 process, but not on the scheduling priority. The priority I was then able to
 set independently to low as I don't want to slow down the foreground app in
 recognizing gestures or other stuff in the foreground that needs low
 latency.

 With the advent of startForeground() this doesn't work anymore, because
 signaling in the foreground, killability and scheduling priority seem to
 have been rolled into one.

 It would be great if those things could be independently controlled like it
 was possible before. And maybe it still is today? Process.setThreadPrio()
 doesn't do the trick anymore though.

 Don't get me wrong it is ok, when my activities sometimes get killed. If
 there were API for that I would also let the OS know when I would prefer not
 to (startCriticalSection()) and when it is cool to kill my activities.

 As we are on the topic. It is not so cool to be just shot down. I would
 prefer to get a signal that I am about to be shut down and get some time to
 finish what I am doing in a grace period and then clean up (and save my
 state). This would even be ok when this trigger would come earlier than the
 OS actually absolutely needs to do it.

 Ok, now back to your question. Let me give you two examples. One is not so
 much of a problem today, I just try to explain what kind of uses I see, the
 other one is what this thread is about.

 (a) I store articles' metadata in a sqlite database in the phone memory and
 the actual content (html, css, images) on the sd card.

 As part of the sync some articles are removed. So I run over all articles
 that are eligible for removal in the database. If I would get a signal to
 clean up as outlined above I would break before I start deleting a new
 article.

 But back to what is implemented today. For each article I have to remove
 the database record and the files on the sd card. The former is very fast,
 the latter is slow.

 It can happen that my process is suddenly killed in the middle of the
 removal of an article. Hence I first removed the assets on the sd card, then
 the database record. This way in the next sync I can clean up the rest and
 only have the issue that between syncs (or restarts) some assets are missing
 and articles are displayed with errors.

 It would be *nicer* if I could invoke startCriticalSection() for the
 removal of each article, but 

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

2010-04-29 Thread dgoemans
Currently installing stuff on my new Nexus One in the Netherlands.
Thank you Google!

On Apr 29, 12:18 pm, Mads Kalør mkal...@gmail.com wrote:
 Looking forward to receiving mine, but how do you check your delivery
 status? We don't have a tracking number, do we?

 Den 4 29, 2010 12:14 PM skrev Al alcapw...@googlemail.com:

 Apparently mine arrive today aswell, london uk :D, wish i could get
 home now!

 Thanks google!

 On Apr 29, 11:08 am, Olivier Bonal olivier.bo...@gmail.com wrote:  Just
 got mine in Marseille Fr...

  On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl bitflips...@gmail.com wrote:
   How do you see this...
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com   For more options,

 visit this group athttp://... 
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com  For more options,

 visit this group athttp:// ...
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com For more options, visit

 this group athttp://  ...   
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.comFor more options, visit

 this group athttp://   ...  
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com   For more options, visit this

 group athttp://... 
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com  For more options, visit this

 group athttp:// ...
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com For more options, visit this

 group athttp://  ...   
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.comFor more options, visit this group

 at   http://...



   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@google...
  ...

  read more »

 --

 You received this message because you are subscribed to the Google Groups
 Android Developers 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+unsubscr...@googlegroups.com
 For more options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: How to obtain a google developer phone in germany?

2010-04-29 Thread tobias429
Chris,

You can develop on any Android phone. The Developer phones are only
specific in that they are guaranteed to come without a sim-lock and
can easily be rooted.

AFAIK the G1 developer phone can't be upgraded to any Android version
higher than 1.6. due to memory limitations, so if you want to
specifically test on a physical device that's on 2.1 getting a Nexus
One would be a good idea.

If you get a phone, you might want to check that the OS is Android
without any manufacturer specific add on like e.g. the HTC Sense user
interface. From what it looks like those phones are the last ones to
receive any OS upgrades, as the manufacturers need to adapt their
specific Android OS add-ons as part of the upgrade.

Apart from that you can of course develop using the different
emulators that come with the SDK. You'll need to do this anyhow for
testing, as it will be very difficult to get your hands on any type of
combination of Android OS, Screen Resolution and hardware features
that's out on the market.

Cheers,

Tobias

On Apr 28, 2:17 pm, chris ach...@gmail.com wrote:
 Hi,

 I plan to develop several apps for the android platform. I'm not yet
 entirely sure if I need a google developer phone or if it is
 sufficient to buy any android phone (e.g. HTC Desire, which is
 available in Germany) ?

 As far as I know there are three google developer phones available:
 G1
 G2
 Nexus One

 But only the Nexus One is deployed with Android 2.1. Do I really need
 to import a Nexus One via the United States to get a google developer
 phone which runs Android 2.1. Maybe I'm missing something?

 Any tips are appreciated.

 Thanks,
 Chris

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Running activity from remote service

2010-04-29 Thread Idan
Hi, iam trying to run an activity from diffrent package from my remote
service: this is how i implement the service.java

  public class CurrencyService extends Service
  {
public class CurrencyServiceImpl extends ICurrencyService.Stub
{

int CALL_PUSH_SERVICE_ACTIVITY=10;


@Override
public void callSomeActivity(int activityId) throws
RemoteException
{
Intent pushActivity=new
Intent(com.pushservice.PushActivity);
pushActivity.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

startActivity(pushActivity);
 }
 .
}

ive also added a line in the manifest of the service:

the service works fine, but i cant run the activity - PushActivity
which is in diffrent package of diffrent application, this is the
error:

Activity not found Exception: No Activity found to handle Intent
{act=com.pushservice.PushServiceActivity flq=0x10 ...

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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread feilfly
mine is confirmed it will arrive today and I got the tracking number
now, I'm in UK

Thanks google.

:-)

Anyone who wants to track their  package just go to the live chat on
FedEx and ask.

here is UK FedEx live chat link : 
http://www.fedex.com/ukservices/helpme/index.html


On Apr 29, 11:33 am, dgoemans dgoem...@gmail.com wrote:
 Currently installing stuff on my new Nexus One in the Netherlands.
 Thank you Google!

 On Apr 29, 12:18 pm, Mads Kalør mkal...@gmail.com wrote:



  Looking forward to receiving mine, but how do you check your delivery
  status? We don't have a tracking number, do we?

  Den 4 29, 2010 12:14 PM skrev Al alcapw...@googlemail.com:

  Apparently mine arrive today aswell, london uk :D, wish i could get
  home now!

  Thanks google!

  On Apr 29, 11:08 am, Olivier Bonal olivier.bo...@gmail.com wrote:  Just
  got mine in Marseille Fr...

   On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl bitflips...@gmail.com wrote:
How do you see this...
android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com   For more options,

  visit this group athttp://... 
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com  For more options,

  visit this group athttp:// ...
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com For more options, visit

  this group athttp://  ...   
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.comFor more options, visit

  this group athttp://   ...  
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com   For more options, visit this

  group athttp://... 
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com  For more options, visit this

  group athttp:// ...
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com For more options, visit this

  group athttp://  ...   
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.comFor more options, visit this group

  at   http://...

android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubs­cr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@google...
   ...

   read more »

  --

  You received this message because you are subscribed to the Google Groups
  Android Developers 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+unsubscr...@googlegroups.com
  For more options, visit this group 
  athttp://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: OOM exception with custom imageadapter

2010-04-29 Thread Lars
Hi so i've been toying with this and can't seem to get the grip of
it... My problem is that ConvertView always is null, and therefore a
lot of imageoperations is being done everytime the gallery is
scrolling or touched - ergo i get an OOM exception...

My getView() is looking like this now, am I doing something wrong
(obviously i must be...)

 public View getView(int position, View convertView, ViewGroup parent)
{

if(convertView == null)
{
Controller co = Controller.GetInstance();

ImageView imageView = new ImageView(context);

 
if(co.server.currRecord.image.get(position).containsKey(data))
{
// we have a content URI and need to get it converted into a
down scaled BitmapDrawable

String uri =
co.server.currRecord.image.get(position).get(data).toString();
co.server.currRecord.image.get(position).put(BM,
FileConvert.BitmapFromContenturi(uri));

 
imageView.setImageDrawable((BitmapDrawable)co.server.currRecord.image.get(position).get(BM));

}
else
{
//we have a web url and need to get it converted into a down
scaled BitmapDrawable

String url =
(String)co.server.currRecord.image.get(position).get(url);
co.server.currRecord.image.get(position).put(BM,
FileConvert.BitmapFromURL(url));
 
imageView.setImageDrawable((BitmapDrawable)co.server.currRecord.image.get(position).get(BM));
}

imageView.setScaleType(ImageView.ScaleType.FIT_XY);
imageView.setLayoutParams(new Gallery.LayoutParams(150, 120));
imageView.setBackgroundResource(itemBackground);
return imageView;
}
else{
return convertView;
}

}

 - Lars

On 26 Apr., 09:55, Romain Guy romain...@android.com wrote:
 Hi,

 As written, your getView() method *never* reuses the convertView
 parameter. This means you are creating new Views and new Bitmaps every
 time the method is called, which happen very often while
 scrolling/flinging a grid.

 You first need to start using the convertView when possible (if
 convertView != null, cast it to an ImageView and set your drawable on
 it.) Note that setting the scale type, layout params and background
 resource should be done only when convertView == null. This will save
 you a lot of time.

 Finally, you should create a cache for your bitmaps to avoid reloading
 them all the time.

 I encourage you to read the source code of the following application
 to see how to implement an efficient list of 
 images:http://code.google.com/p/shelves/

 Also refer to my Google I/O 2009 talk about UI 
 optimization:http://code.google.com/events/io/2009/sessions/TurboChargeUiAndroidFa...
 In this talk I describe how to implement getView() efficiently and
 talk about image caches briefly at the end.



 On Mon, Apr 26, 2010 at 12:50 AM,Larsaxberg.l...@gmail.com wrote:
  Hi

  I have a gallery in wich I show a row of images, the images can both
  be from the Camera gallery or from the internet as a web url. My
  getView() method makes an exception when I put to many images from the
  gallery inside it. Should i down sample the images before attaching
  them to the view? and how is that done ? heres my getView method:

  public View getView(int position, View convertView, ViewGroup parent)
     {

         Controller co = Controller.GetInstance();

         ImageView imageView = new ImageView(context);

  if(co.server.currRecord.image.get(position).containsKey(data))
         {
                 // we have a content URI and assign it to the gallery

  imageView.setImageURI((Uri)co.server.currRecord.image.get(position).get(data));
         }
         else
         {
                 //we have a web url and need our ImageOperation method to
  fetch and decode the drawable.

  imageView.setImageDrawable(FileConvert.ImageOperations(context,
  Controller.GetInstance().server.currRecord.image.get(position).get(url).toString()));
         }

         imageView.setScaleType(ImageView.ScaleType.FIT_XY);
         imageView.setLayoutParams(new Gallery.LayoutParams(150, 120));
         imageView.setBackgroundResource(itemBackground);

         return imageView;
     }

   -Lars

  --
  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 options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

 --
 Romain Guy
 Android framework engineer
 romain...@android.com

 Note: please don't send private questions to me, as I don't have time
 to provide private support.  All such questions should be posted on
 public forums, where I and others can see and answer them

 --
 You received this message because you are subscribed to the Google
 Groups Android 

[android-developers] XML Layout not shown

2010-04-29 Thread Ajay
Hi,
   For any Android project that I create using Eclipse, I cannot see
the preview of the XML layout that I define. It gives a message saying
Eclipse is loading framework information and Layout library from the
SDK folder. XXX.xml will refresh automatically once the process is
finished.

Any ideas?

Thank you,
AJ

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Charlie
Mine is scheduled for delivery tomorrow!
Derby, UK!

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Process Crash whilst using JUnit

2010-04-29 Thread brucko
Nearly at my wits end. Been slowly building my app and now JUnit is
crashing regularly with logcat as below.

There are no other real hints. No relevant code as this can happen at
multiple points of the code. There are no other errors or exceptions
thrown. As far as I can tell there is plenty of memory left and my app
does not appear to have any leaks I can find during a run outside of
JUnit.

Any ideas?


04-29 15:05:23.125 I/DEBUG   (10948): Build fingerprint: 'htc_asia_wwe/
htc_hero/hero/hero:1.5/2.73.707.9/62020:user/release-keys'
04-29 15:05:23.125 I/DEBUG   (10948): pid: 11005, tid: 11006  
com.mydomain.myapp 
04-29 15:05:23.125 I/DEBUG   (10948): signal 11 (SIGSEGV), fault addr
0004
04-29 15:05:23.125 I/DEBUG   (10948):  r0   r1 4356abd0  r2
4108dd50  r3 0010
04-29 15:05:23.125 I/DEBUG   (10948):  r4 ad03dc11  r5 00156d78  r6
4356abd0  r7 
04-29 15:05:23.125 I/DEBUG   (10948):  r8 100ffd00  r9 4100af98  10
4100af84  fp 0001
04-29 15:05:23.125 I/DEBUG   (10948):  ip ad374dd0  sp 100ffcd4  lr
ad33a6f1  pc a9d214b6  cpsr 0030
04-29 15:05:23.235 D/AK8973  (   41): Compass CLOSE
04-29 15:05:23.305 I/DEBUG   (10948):  #00  pc 000214b6  /
system/lib/libutils.so
04-29 15:05:23.305 I/DEBUG   (10948):  #01  lr ad33a6f1  /
system/lib/libandroid_runtime.so
04-29 15:05:23.345 D/UserCreator(11005): onStop
04-29 15:05:23.345 I/ActivityManager(   63): Stopping service:
com.mydomain.myapp/.database.UserDbAdapter
04-29 15:05:23.355 D/UserCreator(11005): unbind
04-29 15:05:23.375 I/DEBUG   (10948): stack:
04-29 15:05:23.375 I/DEBUG   (10948): 100ffc94  afe39dd0
04-29 15:05:23.375 I/DEBUG   (10948): 100ffc98  a000  [heap]
04-29 15:05:23.375 I/DEBUG   (10948): 100ffc9c  afe39dd0
...and so on
then...
04-29 15:36:42.557: INFO/DEBUG(12024): debuggerd committing suicide to
free the zombie!
04-29 15:36:42.567: INFO/DEBUG(12175): debuggerd: Aug 28 2009 20:35:01
04-29 15:36:42.577: INFO/ActivityManager(63): Process
com.mydomain.myapp (pid 12117) has died.
04-29 15:36:42.577: WARN/ActivityManager(63): Crash of app
com.mydomain.myapp running instrumentation
ComponentInfo{com.ozdroid.scanner.tests/
android.test.InstrumentationTestRunner}

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Lim Sim
Hmm...should I be worried that the guy on the live chat says they can't find
a package for my address?

On 29 April 2010 11:53, feilfly feil...@gmail.com wrote:

 mine is confirmed it will arrive today and I got the tracking number
 now, I'm in UK

 Thanks google.

 :-)

 Anyone who wants to track their  package just go to the live chat on
 FedEx and ask.

 here is UK FedEx live chat link :
 http://www.fedex.com/ukservices/helpme/index.html


 On Apr 29, 11:33 am, dgoemans dgoem...@gmail.com wrote:
  Currently installing stuff on my new Nexus One in the Netherlands.
  Thank you Google!
 
  On Apr 29, 12:18 pm, Mads Kalør mkal...@gmail.com wrote:
 
 
 
   Looking forward to receiving mine, but how do you check your delivery
   status? We don't have a tracking number, do we?
 
   Den 4 29, 2010 12:14 PM skrev Al alcapw...@googlemail.com:
 
   Apparently mine arrive today aswell, london uk :D, wish i could get
   home now!
 
   Thanks google!
 
   On Apr 29, 11:08 am, Olivier Bonal olivier.bo...@gmail.com wrote: 
 Just
   got mine in Marseille Fr...
 
On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl bitflips...@gmail.com
 wrote:
 How do you see this...

 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs
 
   cr...@googlegroups.comandroid-developers%2Bunsubs
 
 cr...@googlegroups.com   For more
 options,
 
   visit this group athttp://...
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs
 
   cr...@googlegroups.comandroid-developers%2Bunsubs
 
 cr...@googlegroups.com  For more
 options,
 
   visit this group athttp:// ...   
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs
 
   cr...@googlegroups.comandroid-developers%2Bunsubs
 
 cr...@googlegroups.com For more options,
 visit
 
   this group athttp://  ...  
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs
 
   cr...@googlegroups.comandroid-developers%2Bunsubs
 
 cr...@googlegroups.comFor more options,
 visit
 
   this group athttp://   ... 
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs
 
   cr...@googlegroups.comandroid-developers%2Bunsubs
 
 cr...@googlegroups.com   For more options,
 visit this
 
   group athttp://...
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs
 
   cr...@googlegroups.comandroid-developers%2Bunsubs
 
 cr...@googlegroups.com  For more options, visit
 this
 
   group athttp:// ...   
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs
 
   cr...@googlegroups.comandroid-developers%2Bunsubs
 
 cr...@googlegroups.com For more options, visit
 this
 
   group athttp://  ...  
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs
 
   cr...@googlegroups.comandroid-developers%2Bunsubs
 
 cr...@googlegroups.comFor more options, visit this
 group
 
   at   http://...
 
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs
   cr...@google...
...
 
read more »
 
   --
 
   You received this message because you are subscribed to the Google
 Groups
   Android Developers 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+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
   For more options, visit this group athttp://
 groups.google.com/group/android-developers?hl=en
 
  --
  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
  

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

2010-04-29 Thread Henrik Sandström
Got tracking number from Fedex! They are going to deliver my phone
today. Too bad no one will be home :(
This is the path it took:
VELDHOVEN NL
PARIS FR
STOCKHOLM-ARLANDA SE
I am in Sweden

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread fhucho
I have never received anything from Fedex or similar company before,
how does it work? Do they call you in advance? I have one missed call
(I erased the number), so I'm little worried. Answer quickly please,
I'm quite impatient ;)

On Apr 29, 1:12 pm, Lim Sim lim@gmail.com wrote:
 Hmm...should I be worried that the guy on the live chat says they can't find
 a package for my address?

 On 29 April 2010 11:53, feilfly feil...@gmail.com wrote:





  mine is confirmed it will arrive today and I got the tracking number
  now, I'm in UK

  Thanks google.

  :-)

  Anyone who wants to track their  package just go to the live chat on
  FedEx and ask.

  here is UK FedEx live chat link :
 http://www.fedex.com/ukservices/helpme/index.html

  On Apr 29, 11:33 am, dgoemans dgoem...@gmail.com wrote:
   Currently installing stuff on my new Nexus One in the Netherlands.
   Thank you Google!

   On Apr 29, 12:18 pm, Mads Kalør mkal...@gmail.com wrote:

Looking forward to receiving mine, but how do you check your delivery
status? We don't have a tracking number, do we?

Den 4 29, 2010 12:14 PM skrev Al alcapw...@googlemail.com:

Apparently mine arrive today aswell, london uk :D, wish i could get
home now!

Thanks google!

On Apr 29, 11:08 am, Olivier Bonal olivier.bo...@gmail.com wrote: 
  Just
got mine in Marseille Fr...

 On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl bitflips...@gmail.com
  wrote:
  How do you see this...

  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs 
  cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com   For more
  options,

visit this group athttp://...
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs 
  cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com  For more
  options,

visit this group athttp:// ...   
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs 
  cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com For more options,
  visit

this group athttp://  ...  
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs 
  cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comFor more options,
  visit

this group athttp://   ... 
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs 
  cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com   For more options,
  visit this

group athttp://...
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs 
  cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com  For more options, visit
  this

group athttp:// ...   
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs 
  cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com For more options, visit
  this

group athttp://  ...  
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs 
  cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comFor more options, visit this
  group

at   http://...

  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs
cr...@google...
 ...

 read more »

--

You received this message because you are subscribed to the Google
  Groups
Android Developers 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+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
For more 

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

2010-04-29 Thread feilfly
no you shouldn't if you have received the confirmation email from
google.

you should expect google will give you the phone. go ahead and ask
them. ;-)

good luck


On Apr 29, 12:12 pm, Lim Sim lim@gmail.com wrote:
 Hmm...should I be worried that the guy on the live chat says they can't find
 a package for my address?

 On 29 April 2010 11:53, feilfly feil...@gmail.com wrote:



  mine is confirmed it will arrive today and I got the tracking number
  now, I'm in UK

  Thanks google.

  :-)

  Anyone who wants to track their  package just go to the live chat on
  FedEx and ask.

  here is UK FedEx live chat link :
 http://www.fedex.com/ukservices/helpme/index.html

  On Apr 29, 11:33 am, dgoemans dgoem...@gmail.com wrote:
   Currently installing stuff on my new Nexus One in the Netherlands.
   Thank you Google!

   On Apr 29, 12:18 pm, Mads Kalør mkal...@gmail.com wrote:

Looking forward to receiving mine, but how do you check your delivery
status? We don't have a tracking number, do we?

Den 4 29, 2010 12:14 PM skrev Al alcapw...@googlemail.com:

Apparently mine arrive today aswell, london uk :D, wish i could get
home now!

Thanks google!

On Apr 29, 11:08 am, Olivier Bonal olivier.bo...@gmail.com wrote: 
  Just
got mine in Marseille Fr...

 On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl bitflips...@gmail.com
  wrote:
  How do you see this...

  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com   For more
  options,

visit this group athttp://...
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com  For more
  options,

visit this group athttp:// ...   
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com For more options,
  visit

this group athttp://  ...  
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comFor more options,
  visit

this group athttp://   ... 
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com   For more options,
  visit this

group athttp://...
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com  For more options, visit
  this

group athttp:// ...   
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com For more options, visit
  this

group athttp://  ...  
  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comFor more options, visit this
  group

at   http://...

  android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs
cr...@google...
 ...

 read more »

--

You received this message because you are subscribed to the Google
  Groups
Android Developers 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+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

   --
   You received this 

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

2010-04-29 Thread Henrik Sandström
Fedex come to your door, if you are not there they leave a note with a number.

You can get in touch with fedex by calling them or chatting and ask
them to try to retrieve your tracking number.


On Thu, Apr 29, 2010 at 1:20 PM, fhucho fhu...@gmail.com wrote:
 I have never received anything from Fedex or similar company before,
 how does it work? Do they call you in advance? I have one missed call
 (I erased the number), so I'm little worried. Answer quickly please,
 I'm quite impatient ;)

 On Apr 29, 1:12 pm, Lim Sim lim@gmail.com wrote:
 Hmm...should I be worried that the guy on the live chat says they can't find
 a package for my address?

 On 29 April 2010 11:53, feilfly feil...@gmail.com wrote:





  mine is confirmed it will arrive today and I got the tracking number
  now, I'm in UK

  Thanks google.

  :-)

  Anyone who wants to track their  package just go to the live chat on
  FedEx and ask.

  here is UK FedEx live chat link :
 http://www.fedex.com/ukservices/helpme/index.html

  On Apr 29, 11:33 am, dgoemans dgoem...@gmail.com wrote:
   Currently installing stuff on my new Nexus One in the Netherlands.
   Thank you Google!

   On Apr 29, 12:18 pm, Mads Kalør mkal...@gmail.com wrote:

Looking forward to receiving mine, but how do you check your delivery
status? We don't have a tracking number, do we?

Den 4 29, 2010 12:14 PM skrev Al alcapw...@googlemail.com:

Apparently mine arrive today aswell, london uk :D, wish i could get
home now!

Thanks google!

On Apr 29, 11:08 am, Olivier Bonal olivier.bo...@gmail.com wrote: 
  Just
got mine in Marseille Fr...

 On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl bitflips...@gmail.com
  wrote:
  How do you see this...

  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com   For more
  options,

visit this group athttp://...
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com  For more
  options,

visit this group athttp:// ...   
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com For more options,
  visit

this group athttp://  ...  
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comFor more options,
  visit

this group athttp://   ... 
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com   For more options,
  visit this

group athttp://...
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com  For more options, visit
  this

group athttp:// ...   
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com For more options, visit
  this

group athttp://  ...  
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comFor more options, visit this
  group

at   http://...

  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs
cr...@google...
 ...

 read more »

--

You received this message because you are subscribed to the Google
  Groups
Android Developers group...

--
You received this message because you are subscribed to the Google
Groups Android 

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

2010-04-29 Thread Lim Sim
@feilfly that is true.  FedEx is lying to me :p

On 29 April 2010 12:21, feilfly feil...@gmail.com wrote:

 no you shouldn't if you have received the confirmation email from
 google.

 you should expect google will give you the phone. go ahead and ask
 them. ;-)

 good luck


 On Apr 29, 12:12 pm, Lim Sim lim@gmail.com wrote:
  Hmm...should I be worried that the guy on the live chat says they can't
 find
  a package for my address?
 
  On 29 April 2010 11:53, feilfly feil...@gmail.com wrote:
 
 
 
   mine is confirmed it will arrive today and I got the tracking number
   now, I'm in UK
 
   Thanks google.
 
   :-)
 
   Anyone who wants to track their  package just go to the live chat on
   FedEx and ask.
 
   here is UK FedEx live chat link :
  http://www.fedex.com/ukservices/helpme/index.html
 
   On Apr 29, 11:33 am, dgoemans dgoem...@gmail.com wrote:
Currently installing stuff on my new Nexus One in the Netherlands.
Thank you Google!
 
On Apr 29, 12:18 pm, Mads Kalør mkal...@gmail.com wrote:
 
 Looking forward to receiving mine, but how do you check your
 delivery
 status? We don't have a tracking number, do we?
 
 Den 4 29, 2010 12:14 PM skrev Al alcapw...@googlemail.com:
 
 Apparently mine arrive today aswell, london uk :D, wish i could get
 home now!
 
 Thanks google!
 
 On Apr 29, 11:08 am, Olivier Bonal olivier.bo...@gmail.com
 wrote: 
   Just
 got mine in Marseille Fr...
 
  On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl 
 bitflips...@gmail.com
   wrote:
   How do you see this...
 
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs
 
 cr...@googlegroups.comandroid-developers%2Bunsubs
 
   cr...@googlegroups.com   For more
   options,
 
 visit this group athttp://...
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs
 
 cr...@googlegroups.comandroid-developers%2Bunsubs
 
   cr...@googlegroups.com  For more
   options,
 
 visit this group athttp:// ...   
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs
 
 cr...@googlegroups.comandroid-developers%2Bunsubs
 
   cr...@googlegroups.com For more
 options,
   visit
 
 this group athttp://  ...  
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs
 
 cr...@googlegroups.comandroid-developers%2Bunsubs
 
   cr...@googlegroups.comFor more
 options,
   visit
 
 this group athttp://   ... 
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs
 
 cr...@googlegroups.comandroid-developers%2Bunsubs
 
   cr...@googlegroups.com   For more options,
   visit this
 
 group athttp://...
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs
 
 cr...@googlegroups.comandroid-developers%2Bunsubs
 
   cr...@googlegroups.com  For more options,
 visit
   this
 
 group athttp:// ...   
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs
 
 cr...@googlegroups.comandroid-developers%2Bunsubs
 
   cr...@googlegroups.com For more options,
 visit
   this
 
 group athttp://  ...  
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
   

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

2010-04-29 Thread Bo


On Apr 29, 10:34 am, Joël Bourquard joel.bourqu...@gmail.com wrote:
 Yesss !  Just received the package by FedEx Express in Geneva,
 Switzerland.

Still waiting in Zurich...


 I'm adding it to the map, too :-)

 Thank you Google !  You rock :-D

 On Apr 29, 10:30 am, Paul stuem...@gmail.com wrote:





  \o/

  Just got mine in Bremen, Germany.

  (Fedex/ Brightpoint Netherlands)

  On 29 Apr., 10:18, Lim Sim lim@gmail.com wrote:

   OK.  Now you've got me excited.  I'm in UK too!  haha.

   On 29 April 2010 09:14, mscwd01 mscw...@gmail.com wrote:

Yes! Thanks Google.

My Nexus One arrived via FedEx today. I live in the UK and it was
shipped via Brightpoint Netherlands.

Thanks again!

On Apr 29, 9:07 am, cannehal tomasz.l...@gmail.com wrote:
 Here is link to map. You can add your location (not exact of course)
 there when you receive your phone.

http://maps.google.com/maps/ms?ie=UTFmsa=0msid=
 109593402120975111968.0004855b7d8eefa5f649b

 On Apr 29, 10:02 am, ratson materem...@gmail.com wrote:

  WOW i just got confirmation from local FedEx, my N1 will arrive 
  today
  or by latest tomorrow :)
  i have called them and told the destination address, so they could
  tell me the tracking number.
  thank you google ;)

  On ápr. 29, 09:40, ratson materem...@gmail.com wrote:

   I think this is the time when you shall really post to this forum 
   if
   you have received your N1. :) someone has the time to create a 
   gmaps
   mashup? :)
   patiently waiting for mine in Hungary

   On ápr. 29, 09:35, Benjamin Rosseaux benja...@rosseaux.com 
   wrote:

How long have you waited for it?

On 29 Apr., 09:03, Kevin Gaudin kevin.gau...@gmail.com wrote:

 Nexus One received in France ! No FroYo but a french power
adapter :)

 Sent by Brightpoint from netherland via France Express.

 THANK YOU GOOGLE 

 On 29 avr, 07:36, Jompe71 jonas.ahnl...@bostream.nu wrote:

  -The only way to get a free phone from Apple is to go and 
  get
a drink
  with Gray
  Powell.

  Hmmm, last time I checked Apple didn't promise one either!

  What Google is up to with this seeding joke (which 
  obviously is
  nothing) it's ignorance, pure and simple.
  Fake promises are far more worse than no promises. I'm off 
  to
IPhone!

  On 28 Apr, 09:37, amiuhle timouhlm...@googlemail.com 
  wrote:

   On 27 Apr., 22:25, Olivier Bonal olivier.bo...@gmail.com
wrote:

The only way to get a free phone from Apple is to go and
get a drink with Gray
Powell.

   Haha, great one!

   --
   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.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

  --
  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.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

--
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.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

   --
   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: Device Seeding Program for Top Android Market Developers

2010-04-29 Thread JDS
Don't worry. If you are not home they will give you a note and you can
either pick up the package next day at their office or schedule a new
delivery at home.

On 29 Apr, 13:20, fhucho fhu...@gmail.com wrote:
 I have never received anything from Fedex or similar company before,
 how does it work? Do they call you in advance? I have one missed call
 (I erased the number), so I'm little worried. Answer quickly please,
 I'm quite impatient ;)

 On Apr 29, 1:12 pm, Lim Sim lim@gmail.com wrote:



  Hmm...should I be worried that the guy on the live chat says they can't find
  a package for my address?

  On 29 April 2010 11:53, feilfly feil...@gmail.com wrote:

   mine is confirmed it will arrive today and I got the tracking number
   now, I'm in UK

   Thanks google.

   :-)

   Anyone who wants to track their  package just go to the live chat on
   FedEx and ask.

   here is UK FedEx live chat link :
  http://www.fedex.com/ukservices/helpme/index.html

   On Apr 29, 11:33 am, dgoemans dgoem...@gmail.com wrote:
Currently installing stuff on my new Nexus One in the Netherlands.
Thank you Google!

On Apr 29, 12:18 pm, Mads Kalør mkal...@gmail.com wrote:

 Looking forward to receiving mine, but how do you check your delivery
 status? We don't have a tracking number, do we?

 Den 4 29, 2010 12:14 PM skrev Al alcapw...@googlemail.com:

 Apparently mine arrive today aswell, london uk :D, wish i could get
 home now!

 Thanks google!

 On Apr 29, 11:08 am, Olivier Bonal olivier.bo...@gmail.com wrote: 
   Just
 got mine in Marseille Fr...

  On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl bitflips...@gmail.com
   wrote:
   How do you see this...

   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com   For more
   options,

 visit this group athttp://...
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com  For more
   options,

 visit this group athttp:// ...   
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com For more options,
   visit

 this group athttp://  ...  
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.comFor more options,
   visit

 this group athttp://   ... 
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com   For more options,
   visit this

 group athttp://...
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com  For more options, visit
   this

 group athttp:// ...   
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com For more options, visit
   this

 group athttp://  ...  
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.comFor more options, visit this
   group

 at   http://...

   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs
 cr...@google...
  ...

  read more »

 --

 You received this message because you are subscribed to the Google
   Groups
 Android Developers group...

 --
 You received this message because 

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

2010-04-29 Thread fhucho
Thanks for quick replies!

On Apr 29, 1:29 pm, JDS jesper.d.svens...@gmail.com wrote:
 Don't worry. If you are not home they will give you a note and you can
 either pick up the package next day at their office or schedule a new
 delivery at home.

 On 29 Apr, 13:20, fhucho fhu...@gmail.com wrote:





  I have never received anything from Fedex or similar company before,
  how does it work? Do they call you in advance? I have one missed call
  (I erased the number), so I'm little worried. Answer quickly please,
  I'm quite impatient ;)

  On Apr 29, 1:12 pm, Lim Sim lim@gmail.com wrote:

   Hmm...should I be worried that the guy on the live chat says they can't 
   find
   a package for my address?

   On 29 April 2010 11:53, feilfly feil...@gmail.com wrote:

mine is confirmed it will arrive today and I got the tracking number
now, I'm in UK

Thanks google.

:-)

Anyone who wants to track their  package just go to the live chat on
FedEx and ask.

here is UK FedEx live chat link :
   http://www.fedex.com/ukservices/helpme/index.html

On Apr 29, 11:33 am, dgoemans dgoem...@gmail.com wrote:
 Currently installing stuff on my new Nexus One in the Netherlands.
 Thank you Google!

 On Apr 29, 12:18 pm, Mads Kalør mkal...@gmail.com wrote:

  Looking forward to receiving mine, but how do you check your 
  delivery
  status? We don't have a tracking number, do we?

  Den 4 29, 2010 12:14 PM skrev Al alcapw...@googlemail.com:

  Apparently mine arrive today aswell, london uk :D, wish i could get
  home now!

  Thanks google!

  On Apr 29, 11:08 am, Olivier Bonal olivier.bo...@gmail.com wrote: 
  
Just
  got mine in Marseille Fr...

   On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl 
   bitflips...@gmail.com
wrote:
How do you see this...

android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
android-developers%2bunsubs­cr...@googlegroups.com
android-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com   For more
options,

  visit this group athttp://...
android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
android-developers%2bunsubs­cr...@googlegroups.com
android-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com  For more
options,

  visit this group athttp:// ...   
android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
android-developers%2bunsubs­cr...@googlegroups.com
android-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com For more 
options,
visit

  this group athttp://  ...  
android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
android-developers%2bunsubs­cr...@googlegroups.com
android-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.comFor more options,
visit

  this group athttp://   ... 
android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
android-developers%2bunsubs­cr...@googlegroups.com
android-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com   For more options,
visit this

  group athttp://...
android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
android-developers%2bunsubs­cr...@googlegroups.com
android-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com  For more options, 
visit
this

  group athttp:// ...   
android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
android-developers%2bunsubs­cr...@googlegroups.com
android-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com For more options, visit
this

  group athttp://  ...  
android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
android-developers%2bunsubs­cr...@googlegroups.com
android-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.comFor more options, visit 
this
group

  at   http://...

android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
android-developers%2bunsubs­cr...@googlegroups.com

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

2010-04-29 Thread roland
Thanks for the google maps stuff, pretty good.

http://maps.google.com/maps/ms?ie=UTFmsa=0msid=109593402120975111968.0004855b7d8eefa5f649b

On 29 avr, 13:36, fhucho fhu...@gmail.com wrote:
 Thanks for quick replies!

 On Apr 29, 1:29 pm, JDS jesper.d.svens...@gmail.com wrote:



  Don't worry. If you are not home they will give you a note and you can
  either pick up the package next day at their office or schedule a new
  delivery at home.

  On 29 Apr, 13:20, fhucho fhu...@gmail.com wrote:

   I have never received anything from Fedex or similar company before,
   how does it work? Do they call you in advance? I haveonemissed call
   (I erased the number), so I'm little worried. Answer quickly please,
   I'm quite impatient ;)

   On Apr 29, 1:12 pm, Lim Sim lim@gmail.com wrote:

Hmm...should I be worried that the guy on the live chat says they can't 
find
a package for my address?

On 29 April 2010 11:53, feilfly feil...@gmail.com wrote:

 mine is confirmed it will arrive today and I got the tracking number
 now, I'm in UK

 Thanks google.

 :-)

 Anyone who wants to track their  package just go to the live chat on
 FedEx and ask.

 here is UK FedEx live chat link :
http://www.fedex.com/ukservices/helpme/index.html

 On Apr 29, 11:33 am, dgoemans dgoem...@gmail.com wrote:
  Currently installing stuff on my newNexusOnein the Netherlands.
  Thank you Google!

  On Apr 29, 12:18 pm, Mads Kalør mkal...@gmail.com wrote:

   Looking forward to receiving mine, but how do you check your 
   delivery
   status? We don't have a tracking number, do we?

   Den 4 29, 2010 12:14 PM skrev Al alcapw...@googlemail.com:

   Apparently mine arrive today aswell, london uk :D, wish i could 
   get
   home now!

   Thanks google!

   On Apr 29, 11:08 am, Olivier Bonal olivier.bo...@gmail.com 
   wrote: 
 Just
   got mine in Marseille Fr...

On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl 
bitflips...@gmail.com
 wrote:
 How do you see this...

 android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs

   cr...@googlegroups.comandroid-developers%2Bunsubs

 cr...@googlegroups.com   For more
 options,

   visit this group athttp://...
 android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs

   cr...@googlegroups.comandroid-developers%2Bunsubs

 cr...@googlegroups.com  For more
 options,

   visit this group athttp:// ...   
 android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs

   cr...@googlegroups.comandroid-developers%2Bunsubs

 cr...@googlegroups.com For more 
 options,
 visit

   this group athttp://  ...  
 android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs

   cr...@googlegroups.comandroid-developers%2Bunsubs

 cr...@googlegroups.comFor more 
 options,
 visit

   this group athttp://   ... 
 android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs

   cr...@googlegroups.comandroid-developers%2Bunsubs

 cr...@googlegroups.com   For more options,
 visit this

   group athttp://...
 android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs

   cr...@googlegroups.comandroid-developers%2Bunsubs

 cr...@googlegroups.com  For more options, 
 visit
 this

   group athttp:// ...   
 android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs

   cr...@googlegroups.comandroid-developers%2Bunsubs

 cr...@googlegroups.com For more options, 
 visit
 this

   group athttp://  ...  
 android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
  cr...@googlegroups.com
 android-developers%2bunsubs­cr...@googlegroups.com
 android-developers%2Bunsubs

   

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

2010-04-29 Thread Thomas Riley
Got mine, Southport UK sent via FedEx from Brightpoint NL...

It's flashing Android 2.1 update1 as we speak ;)

On Apr 29, 12:41 pm, roland roland...@gmail.com wrote:
 Thanks for the google maps stuff, pretty good.

 http://maps.google.com/maps/ms?ie=UTFmsa=0msid=10959340212097511196...

 On 29 avr, 13:36, fhucho fhu...@gmail.com wrote:





  Thanks for quick replies!

  On Apr 29, 1:29 pm, JDS jesper.d.svens...@gmail.com wrote:

   Don't worry. If you are not home they will give you a note and you can
   either pick up the package next day at their office or schedule a new
   delivery at home.

   On 29 Apr, 13:20, fhucho fhu...@gmail.com wrote:

I have never received anything from Fedex or similar company before,
how does it work? Do they call you in advance? I haveonemissed call
(I erased the number), so I'm little worried. Answer quickly please,
I'm quite impatient ;)

On Apr 29, 1:12 pm, Lim Sim lim@gmail.com wrote:

 Hmm...should I be worried that the guy on the live chat says they 
 can't find
 a package for my address?

 On 29 April 2010 11:53, feilfly feil...@gmail.com wrote:

  mine is confirmed it will arrive today and I got the tracking number
  now, I'm in UK

  Thanks google.

  :-)

  Anyone who wants to track their  package just go to the live chat on
  FedEx and ask.

  here is UK FedEx live chat link :
 http://www.fedex.com/ukservices/helpme/index.html

  On Apr 29, 11:33 am, dgoemans dgoem...@gmail.com wrote:
   Currently installing stuff on my newNexusOnein the Netherlands.
   Thank you Google!

   On Apr 29, 12:18 pm, Mads Kalør mkal...@gmail.com wrote:

Looking forward to receiving mine, but how do you check your 
delivery
status? We don't have a tracking number, do we?

Den 4 29, 2010 12:14 PM skrev Al alcapw...@googlemail.com:

Apparently mine arrive today aswell, london uk :D, wish i could 
get
home now!

Thanks google!

On Apr 29, 11:08 am, Olivier Bonal olivier.bo...@gmail.com 
wrote: 
  Just
got mine in Marseille Fr...

 On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl 
 bitflips...@gmail.com
  wrote:
  How do you see this...

  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com   For more
  options,

visit this group athttp://...
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com  For more
  options,

visit this group athttp:// ...   
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com For more 
  options,
  visit

this group athttp://  ...  
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.comFor more 
  options,
  visit

this group athttp://   ... 
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com   For more 
  options,
  visit this

group athttp://...
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com  For more options, 
  visit
  this

group athttp:// ...   
  android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
   cr...@googlegroups.com
  android-developers%2bunsubs­cr...@googlegroups.com
  android-developers%2Bunsubs

cr...@googlegroups.comandroid-developers%2Bunsubs

  cr...@googlegroups.com For more options, 
  visit
  this

group 

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

2010-04-29 Thread Lim Sim
Nice one.  Finally happy people on this thread.  it's been a while :)

On 29 April 2010 12:47, Thomas Riley tomrile...@googlemail.com wrote:

 Got mine, Southport UK sent via FedEx from Brightpoint NL...

 It's flashing Android 2.1 update1 as we speak ;)

 On Apr 29, 12:41 pm, roland roland...@gmail.com wrote:
  Thanks for the google maps stuff, pretty good.
 
  http://maps.google.com/maps/ms?ie=UTFmsa=0msid=10959340212097511196...
 
  On 29 avr, 13:36, fhucho fhu...@gmail.com wrote:
 
 
 
 
 
   Thanks for quick replies!
 
   On Apr 29, 1:29 pm, JDS jesper.d.svens...@gmail.com wrote:
 
Don't worry. If you are not home they will give you a note and you
 can
either pick up the package next day at their office or schedule a new
delivery at home.
 
On 29 Apr, 13:20, fhucho fhu...@gmail.com wrote:
 
 I have never received anything from Fedex or similar company
 before,
 how does it work? Do they call you in advance? I haveonemissed call
 (I erased the number), so I'm little worried. Answer quickly
 please,
 I'm quite impatient ;)
 
 On Apr 29, 1:12 pm, Lim Sim lim@gmail.com wrote:
 
  Hmm...should I be worried that the guy on the live chat says they
 can't find
  a package for my address?
 
  On 29 April 2010 11:53, feilfly feil...@gmail.com wrote:
 
   mine is confirmed it will arrive today and I got the tracking
 number
   now, I'm in UK
 
   Thanks google.
 
   :-)
 
   Anyone who wants to track their  package just go to the live
 chat on
   FedEx and ask.
 
   here is UK FedEx live chat link :
  http://www.fedex.com/ukservices/helpme/index.html
 
   On Apr 29, 11:33 am, dgoemans dgoem...@gmail.com wrote:
Currently installing stuff on my newNexusOnein the
 Netherlands.
Thank you Google!
 
On Apr 29, 12:18 pm, Mads Kalør mkal...@gmail.com wrote:
 
 Looking forward to receiving mine, but how do you check
 your delivery
 status? We don't have a tracking number, do we?
 
 Den 4 29, 2010 12:14 PM skrev Al 
 alcapw...@googlemail.com:
 
 Apparently mine arrive today aswell, london uk :D, wish i
 could get
 home now!
 
 Thanks google!
 
 On Apr 29, 11:08 am, Olivier Bonal 
 olivier.bo...@gmail.com wrote: 
   Just
 got mine in Marseille Fr...
 
  On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl 
 bitflips...@gmail.com
   wrote:
   How do you see this...
 
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs
 
 cr...@googlegroups.comandroid-developers%2Bunsubs
 
   cr...@googlegroups.com  
 For more
   options,
 
 visit this group athttp://...
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs
 
 cr...@googlegroups.comandroid-developers%2Bunsubs
 
   cr...@googlegroups.com  For
 more
   options,
 
 visit this group athttp:// ...   
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs
 
 cr...@googlegroups.comandroid-developers%2Bunsubs
 
   cr...@googlegroups.com For
 more options,
   visit
 
 this group athttp://  ...  
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs
 
 cr...@googlegroups.comandroid-developers%2Bunsubs
 
   cr...@googlegroups.comFor more
 options,
   visit
 
 this group athttp://   ... 
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs
 
 cr...@googlegroups.comandroid-developers%2Bunsubs
 
   cr...@googlegroups.com   For more
 options,
   visit this
 
 group athttp://...
   android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs
 
 cr...@googlegroups.comandroid-developers%2Bunsubs
 
   

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

2010-04-29 Thread aclelland
Recieved mine Dundee,UK shipped by FedEx from Brightpoint  NL :)

On Apr 29, 12:47 pm, Thomas Riley tomrile...@googlemail.com wrote:
 Got mine, Southport UK sent via FedEx from Brightpoint NL...

 It's flashing Android 2.1 update1 as we speak ;)

 On Apr 29, 12:41 pm, roland roland...@gmail.com wrote:

  Thanks for the google maps stuff, pretty good.

 http://maps.google.com/maps/ms?ie=UTFmsa=0msid=10959340212097511196...

  On 29 avr, 13:36, fhucho fhu...@gmail.com wrote:

   Thanks for quick replies!

   On Apr 29, 1:29 pm, JDS jesper.d.svens...@gmail.com wrote:

Don't worry. If you are not home they will give you a note and you can
either pick up the package next day at their office or schedule a new
delivery at home.

On 29 Apr, 13:20, fhucho fhu...@gmail.com wrote:

 I have never received anything from Fedex or similar company before,
 how does it work? Do they call you in advance? I haveonemissed call
 (I erased the number), so I'm little worried. Answer quickly please,
 I'm quite impatient ;)

 On Apr 29, 1:12 pm, Lim Sim lim@gmail.com wrote:

  Hmm...should I be worried that the guy on the live chat says they 
  can't find
  a package for my address?

  On 29 April 2010 11:53, feilfly feil...@gmail.com wrote:

   mine is confirmed it will arrive today and I got the tracking 
   number
   now, I'm in UK

   Thanks google.

   :-)

   Anyone who wants to track their  package just go to the live chat 
   on
   FedEx and ask.

   here is UK FedEx live chat link :
  http://www.fedex.com/ukservices/helpme/index.html

   On Apr 29, 11:33 am, dgoemans dgoem...@gmail.com wrote:
Currently installing stuff on my newNexusOnein the Netherlands.
Thank you Google!

On Apr 29, 12:18 pm, Mads Kalør mkal...@gmail.com wrote:

 Looking forward to receiving mine, but how do you check your 
 delivery
 status? We don't have a tracking number, do we?

 Den 4 29, 2010 12:14 PM skrev Al alcapw...@googlemail.com:

 Apparently mine arrive today aswell, london uk :D, wish i 
 could get
 home now!

 Thanks google!

 On Apr 29, 11:08 am, Olivier Bonal olivier.bo...@gmail.com 
 wrote: 
   Just
 got mine in Marseille Fr...

  On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl 
  bitflips...@gmail.com
   wrote:
   How do you see this...

   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com   For 
   more
   options,

 visit this group athttp://...
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com  For more
   options,

 visit this group athttp:// ...   
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com For more 
   options,
   visit

 this group athttp://  ...  
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.comFor more 
   options,
   visit

 this group athttp://   ... 
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com   For more 
   options,
   visit this

 group athttp://...
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
cr...@googlegroups.com
   android-developers%2bunsubs­cr...@googlegroups.com
   android-developers%2Bunsubs

 cr...@googlegroups.comandroid-developers%2Bunsubs

   cr...@googlegroups.com  For more 
   options, visit
   this

 group athttp:// ...   
   android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs

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

2010-04-29 Thread zneref
I've just received e-mail from Fedex Poland, they gave mi track
number, N1 should be today in my hands :)

On 29 Kwi, 13:50, aclelland aclell...@gmail.com wrote:
 Recieved mine Dundee,UK shipped by FedEx from Brightpoint  NL :)

 On Apr 29, 12:47 pm, Thomas Riley tomrile...@googlemail.com wrote:



  Got mine, Southport UK sent via FedEx from Brightpoint NL...

  It's flashing Android 2.1 update1 as we speak ;)

  On Apr 29, 12:41 pm, roland roland...@gmail.com wrote:

   Thanks for the google maps stuff, pretty good.

  http://maps.google.com/maps/ms?ie=UTFmsa=0msid=10959340212097511196...

   On 29 avr, 13:36, fhucho fhu...@gmail.com wrote:

Thanks for quick replies!

On Apr 29, 1:29 pm, JDS jesper.d.svens...@gmail.com wrote:

 Don't worry. If you are not home they will give you a note and you can
 either pick up the package next day at their office or schedule a new
 delivery at home.

 On 29 Apr, 13:20, fhucho fhu...@gmail.com wrote:

  I have never received anything from Fedex or similar company before,
  how does it work? Do they call you in advance? I haveonemissed call
  (I erased the number), so I'm little worried. Answer quickly please,
  I'm quite impatient ;)

  On Apr 29, 1:12 pm, Lim Sim lim@gmail.com wrote:

   Hmm...should I be worried that the guy on the live chat says they 
   can't find
   a package for my address?

   On 29 April 2010 11:53, feilfly feil...@gmail.com wrote:

mine is confirmed it will arrive today and I got the tracking 
number
now, I'm in UK

Thanks google.

:-)

Anyone who wants to track their  package just go to the live 
chat on
FedEx and ask.

here is UK FedEx live chat link :
   http://www.fedex.com/ukservices/helpme/index.html

On Apr 29, 11:33 am, dgoemans dgoem...@gmail.com wrote:
 Currently installing stuff on my newNexusOnein the 
 Netherlands.
 Thank you Google!

 On Apr 29, 12:18 pm, Mads Kalør mkal...@gmail.com wrote:

  Looking forward to receiving mine, but how do you check 
  your delivery
  status? We don't have a tracking number, do we?

  Den 4 29, 2010 12:14 PM skrev Al 
  alcapw...@googlemail.com:

  Apparently mine arrive today aswell, london uk :D, wish i 
  could get
  home now!

  Thanks google!

  On Apr 29, 11:08 am, Olivier Bonal 
  olivier.bo...@gmail.com wrote: 
Just
  got mine in Marseille Fr...

   On Thu, Apr 29, 2010 at 12:01 PM, Mark Gjøl 
   bitflips...@gmail.com
wrote:
How do you see this...

android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
android-developers%2bunsubs­cr...@googlegroups.com
android-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com   For 
more
options,

  visit this group athttp://...
android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
android-developers%2bunsubs­cr...@googlegroups.com
android-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com  For 
more
options,

  visit this group athttp:// ...   
android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
android-developers%2bunsubs­cr...@googlegroups.com
android-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com For 
more options,
visit

  this group athttp://  ...  
android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
android-developers%2bunsubs­cr...@googlegroups.com
android-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.comFor more 
options,
visit

  this group athttp://   ... 
android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
android-developers%2bunsubs­cr...@googlegroups.com
android-developers%2Bunsubs

  cr...@googlegroups.comandroid-developers%2Bunsubs

cr...@googlegroups.com   For more 
options,
visit this

  group athttp://...
android-developers+unsubscr...@googlegroups.comandroid-developers%2Bunsubs
 cr...@googlegroups.com
android-developers%2bunsubs­cr...@googlegroups.com
android-developers%2Bunsubs

 

[android-developers] Re: XML Layout not shown

2010-04-29 Thread Ajay
found the solution here...

http://androidbook.blogspot.com/2009/07/when-eclipse-loading-framework.html


On Apr 29, 3:59 pm, Ajay aja...@gmail.com wrote:
 Hi,
    For any Android project that I create using Eclipse, I cannot see
 the preview of the XML layout that I define. It gives a message saying
 Eclipse is loading framework information and Layout library from the
 SDK folder. XXX.xml will refresh automatically once the process is
 finished.

 Any ideas?

 Thank you,
 AJ

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Lorents
Yupp, yupp - will get mine tomorrow :)

Fedex from Veldhoven NL, to Norway,

Thank you very much Google! Much appreciated!!

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: How to detect Bluetooth headset key press

2010-04-29 Thread gcstang
I thought this was disabled at the OS levelotherwise wouldn't we
be able to press to start a dialing app on our BT Headsets?

On Apr 29, 1:31 am, mort m...@sto-helit.de wrote:
 Hi,

 it's pretty simple: add a broadcast listener to MEDIA_BUTTON:
 intent-filter android:priority=some number
     action android:name=android.intent.action.MEDIA_BUTTON /
 /intent-filter

 You need to give it a priority, which decides whether it's handled
 before or after other apps. In other words, it's pure coincidence who
 picked the highest number...
 If you handled the button press, you should abort the broadcast with
 abortBroadcast(). Trouble with this handling is, the priorities and
 abortBroadcast() work fine as long as each app only responds while
 e.g. something is played. But several users also expect a default
 player to be launched (or start playing) upon button press, like the
 default player, so it might happen some app with a higher priority
 number won't let the intent come through to your app... (I already
 filed an issue to improve 
 that:http://code.google.com/p/android/issues/detail?id=7772
 - no response so far...)

 In the onReceive, you can get the button event with
 KeyEvent key = (KeyEvent)
 intent.getParcelableExtra(Intent.EXTRA_KEY_EVENT);

 key.getKeyAction() tells you whether the button was released or
 pressed, key.getKeyCode() tells which button. The values are
 documented and pretty self explaining, like KeyEvent.ACTION_DOWN or
 KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE.
 Regarding press and release, keep in mind several headsets do own
 processing which prevents this (like e.g. closing the connection or
 sending stop on long press on play/pause) or simply send both at
 once when the key is pressed or released. Also, some BT drivers are a
 bit unreliable in that regard...

 If you want to handle single button cable headsets as well, also
 regard the key code KEYCODE_HEADSETHOOK.

 btw: HTC Hero doesn't implement this standard, it needs a workaround
 app.

 HTH,
 Mirko

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] TabHost Problem

2010-04-29 Thread dillirao malipeddi
when u click on another tab it pauses the previous activity and starts the
new activity with the corresponding tab button
save the activity state and values and when resumes the activity fill the
saved values,

u may implement onSaveInstanceState() to save the values and repopulate when
resumes.

may be this will help you.

On Thu, Apr 29, 2010 at 2:47 PM, Chirayu Dalwadi
chirayu.dalw...@gmail.comwrote:

 I'm developing an application in which i have few tabs.
 In one tab i have a calender button and when i set date using that
 button, the value of textview updates automatically.

 Now the problem is that when i click another tab the value of textview
 goes blank automatically
 how to resolve this?

 --
 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.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Thank you,
Dilli Rao. M
www.arijasoft.com

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Scrollview doesn't like a complex child?

2010-04-29 Thread Pinheiro
Thanks for your help, Romain.
What is the correct way to show a (non-scrollable) footer below a
Scrollview?
This doesn't work since the bottom of the content hides behind the
footer:

FrameLayout (height=wrap_content)
Scrollview
TextView - a very large text to scroll
/Scrollview

TextView -- footer (layout_gravity=bottom)
/FrameLayout

RelativeLayout with a footer with layout_alignParentBottom=true
gives the same result.

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Using same sqlite database from multiple Activities and Services

2010-04-29 Thread gcstang
As am I, I'm doing the same with onPause/onResume.

Federico how are you checking if your database connection is open?

On Apr 28, 3:18 am, Federico Paolinelli fedep...@gmail.com wrote:
 An sqllitedb (helper) object for each activity (but the open one is
 only in the active activity). Every time an activity closes or pauses,
 I call the close() method.
 However, I am interested in any more elegant and standard solution of
 this problem.

 Federico

 On 27 Apr, 21:49, goosedroid alexrhel...@gmail.com wrote:





  Frederico, were you sharing the same SQLiteDatabase instance object
  between all activities via some singleton helper class, or was each
  Activity instantiating a new SQLiteDatabase object?

  On Apr 27, 8:58 am, Federico Paolinelli fedep...@gmail.com wrote:

   On 27 Apr, 13:48, goosedroid alexrhel...@gmail.com wrote:

I have been trying to find a discussion on the best way to handle a
common sqlite database which is shared by multiple Activities (or
multiple Activities and Services). This is all in the same
application.

It seems that if each Activity has:

void onCreate()
{
    SQLiteDatabase db = SQLiteDatabase.openDatabase(...)
    ...

}

void onDestroy()
{
   db.close();
   ...

}

this would be wasteful, assuming there would be N SQLiteDatabase
objects with N activities that needed access to the same db.

One could go about making a singleton, but who would be responsible
for closing the database when the application terminates?

Would it be best to extend the android.app.Application class and hook
into the onTerminate() to close the database?

Taking a look at NotePadv3Solution, I can't find where it closes the
database - and that is a pretty straightforward example.

--

   What I did (which may not be the best solution is to call the
   db.close() in onPause() method and call the db.open() in any
   onResume() method of all activities.
   Be aware that during the activity creation both onCreate() and
   onResume() methods are called, so you need to check the db is not
   opened yet.

   Hope this helps,

       Federico

   --
   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 options, visit this group 
   athttp://groups.google.com/group/android-developers?hl=en

  --
  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 options, visit this group 
  athttp://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread westmeadboy
Can anyone mention if N1 3G works in Germany on their network?

On Apr 29, 2:14 pm, Lorents iva...@gmail.com wrote:
 Yupp, yupp - will get mine tomorrow :)

 Fedex from Veldhoven NL, to Norway,

 Thank you very much Google! Much appreciated!!

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Using same sqlite database from multiple Activities and Services

2010-04-29 Thread Federico Paolinelli
Just putting a dbstatus flag in the dbhelper class.
When open() is called, I check the flag to see if the db is already
open, if so I do nothing, otherwise I do the open stuff and then I set
the flag.

On Thu, Apr 29, 2010 at 2:26 PM, gcstang gcst...@gmail.com wrote:
 As am I, I'm doing the same with onPause/onResume.

 Federico how are you checking if your database connection is open?

 On Apr 28, 3:18 am, Federico Paolinelli fedep...@gmail.com wrote:
 An sqllitedb (helper) object for each activity (but the open one is
 only in the active activity). Every time an activity closes or pauses,
 I call the close() method.
 However, I am interested in any more elegant and standard solution of
 this problem.

 Federico

 On 27 Apr, 21:49, goosedroid alexrhel...@gmail.com wrote:





  Frederico, were you sharing the same SQLiteDatabase instance object
  between all activities via some singleton helper class, or was each
  Activity instantiating a new SQLiteDatabase object?

  On Apr 27, 8:58 am, Federico Paolinelli fedep...@gmail.com wrote:

   On 27 Apr, 13:48, goosedroid alexrhel...@gmail.com wrote:

I have been trying to find a discussion on the best way to handle a
common sqlite database which is shared by multiple Activities (or
multiple Activities and Services). This is all in the same
application.

It seems that if each Activity has:

void onCreate()
{
    SQLiteDatabase db = SQLiteDatabase.openDatabase(...)
    ...

}

void onDestroy()
{
   db.close();
   ...

}

this would be wasteful, assuming there would be N SQLiteDatabase
objects with N activities that needed access to the same db.

One could go about making a singleton, but who would be responsible
for closing the database when the application terminates?

Would it be best to extend the android.app.Application class and hook
into the onTerminate() to close the database?

Taking a look at NotePadv3Solution, I can't find where it closes the
database - and that is a pretty straightforward example.

--

   What I did (which may not be the best solution is to call the
   db.close() in onPause() method and call the db.open() in any
   onResume() method of all activities.
   Be aware that during the activity creation both onCreate() and
   onResume() methods are called, so you need to check the db is not
   opened yet.

   Hope this helps,

       Federico

   --
   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 options, visit this group 
   athttp://groups.google.com/group/android-developers?hl=en

  --
  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 options, visit this group 
  athttp://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group at
 http://groups.google.com/group/android-developers?hl=en



-- 

Federico

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Andreas Reuterberg
FedEx couldn't find my tracking number either but you need to speak to
a special FedEx Express guy and not the person you get from the chat
link sent earlier.

So I talked to him and he could find my name and details. Getting it tomorrow!




On Thu, Apr 29, 2010 at 1:29 PM, westmeadboy westmead...@yahoo.co.uk wrote:
 Can anyone mention if N1 3G works in Germany on their network?

 On Apr 29, 2:14 pm, Lorents iva...@gmail.com wrote:
 Yupp, yupp - will get mine tomorrow :)

 Fedex from Veldhoven NL, to Norway,

 Thank you very much Google! Much appreciated!!

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Bluetooth File Transfer OPP

2010-04-29 Thread Henry
Hi,

i want to send files via Bluetooth to a another device. Currently I
can do that with Intent.ACTION_SEND but this use a user intaction. I
want to send files to a device programmatically. Has anyone a idea how
i can send files via Bluetooth OPP?

Thank you very much!

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Bluetooth File Transfer OPP

2010-04-29 Thread Henry
Hi,

i want to send files via Bluetooth to a another device. Currently I
can do that with Intent.ACTION_SEND but this use a user intaction. I
want to send files to a device programmatically. Has anyone a idea how
i can send files via Bluetooth OPP?

Thank you very much!

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: accessing and changing Sync setting for android 1.5, 1.6 and more

2010-04-29 Thread cpphool
yes, i know it doesn't work on 1.6. there is a different content
provider there or we do not have access to content://sync/settings.
i have looked through android source code and in 1.6 file Sync.java
disappears (it was available in 1.5).

On 26 Kwi, 09:13, remy berrebi zehunte...@gmail.com wrote:
 i tryed your code, but it doesn't work on 1.6 :-(

 E/AndroidRuntime(  429): java.lang.IllegalArgumentException: Unknown URL
 content://sync/settings
 E/AndroidRuntime(  429):        at
 android.content.ContentResolver.insert(ContentResolver.java:476)



 On Fri, Apr 23, 2010 at 11:38, cpphool cpph...@gmail.com wrote:
  I have added one modification and snippet works on htc magic (1.5)

   final Uri CONTENT_URI = Uri.parse(content://sync/settings);
   ContentValues values = new ContentValues();
   values.put(name, sync_provider_contacts);
   values.put(value, true); // -- here - string true instead of
  boolean
   getContentResolver().insert(CONTENT_URI, values);

  On 21 Kwi, 15:12, remy berrebi zehunte...@gmail.com wrote:
   good news about android 2.x but actually, i want to make my application
   available for all major android version, like 1.6 and if possible 1.5

   i'm still searching information.
   actually i'm trying to understand reflect mechanism, to see if i can call
   HIDE method and class and act on sync setting.
   but for now nothing work :-(

   On Tue, Apr 20, 2010 at 16:25, cpphool cpph...@gmail.com wrote:
[android 2.x]

as far as i know, Android 2.x introduces completely new sync mechanism
(allowing use to use multi accounts). In order to check whether global
auto-sync is on, you can use:

 ContentResolver.getMasterSyncAutomatically();

and to switch it on:

 ContentResolver.setMasterSyncAutomatically(true);

[android 1.x]

Did you find something about 1.6? and are you able to change auto-sync
settings in 1.5?

I tried with this snippet:

 final Uri CONTENT_URI = Uri.parse(content://sync/settings);
 ContentValues values = new ContentValues();
 values.put(name, sync_provider_contacts);
 values.put(value, true);
 getContentResolver().insert(CONTENT_URI, values);

The value changes to 1 instead of true and it doesn't affect sync
settings.

On 16 Kwi, 17:53, zehunter zehunte...@gmail.com wrote:
 hi,

 i'm not able to find any example or documentation or tutorial about
 how to enable or disable sync (background data and auto sync)
 programmaticaly, even if i can found many widget that can do that
 without root access or such.

 is it something secret? :-)
 can any one may be good enough to help me and explain how this work
 and how to implement that into my code?

 i found some trick with URI and content://sync/setting but it seems
  to
 be not possible with android 1.6 at least :-( any idea why? and what
 replaced this?

 thanks a thousand time for all people that will answer to me.
 best regards,

 --
 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.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com

 For more options, visit this group athttp://
groups.google.com/group/android-developers?hl=en

--
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.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com

For more options, visit this group at
   http://groups.google.com/group/android-developers?hl=en

   --
   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.comandroid-developers%2bunsubscr...@googlegroups.com
   For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

  --
  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.comandroid-developers%2bunsubscr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

 --
 You received this message 

[android-developers] Re: Scrollview doesn't like a complex child?

2010-04-29 Thread Pinheiro
Forgot to mention. This could be solved with a fixed footer height and
putting layout_marginBottom in the scrollview but it's not a nice
solution, imho.

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Dave Johnston
Mine (and a co-worker's) both arrived just now, via Fedex, in Bromley.

-dave

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread lricky
It has ARRIVED!!!

I've just received my N1! (haven't really look at the real thing...
i'm at the office right now... :-)))

I'm in Netherland.  I think everyone in europe will start receiving
the N1 very soon.

Thanks Google !!!


On Mar 3, 1:53 am, Larry lar...@gmail.com wrote:
 Dear all,

 I just received an email about Device Seeding Program for Top Android
 Market Developers:

 Subject: Device Seeding Program for Top Android Market Developers
 From: android-market-seed...@google.com

 Due to your contribution to the success of Android Market, we would
 like to present you with a brand new Android device as part of our
 developer device seeding program. You are receiving this message
 because you're one of the top developers in Android Market with one or
 more of your applications having a 3.5 star or higher rating and more
 than 5,000 unique downloads.

 In order to receive this device, you must click through to this site,
 read the terms and conditions of the offer and fill out the
 registration form to give us your current mailing address so that we
 can ship your device.

 You will receive either a Verizon Droid by Motorola or a Nexus One.
 Developers with mailing addresses in the US will receive either a
 Droid or Nexus one, based on random distribution. Developers from
 Canada, EU, and the EEA states (Norway, Lichtenstein), Switzerland,
 Hong Kong, Taiwan, and Singapore will receive a Nexus One. Developers
 with mailing addresses in countries not listed above will not receive
 a phone since these phones are not certified to be used in other
 countries.

 We hope that you will enjoy your new device and continue to build more
 insanely popular apps for Android!

 The email is from Google but I am still doubting somehow. Is this a
 spam? Any other developers receive this emails before?

 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@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Android and WCF

2010-04-29 Thread Dieng
Jose C Gomez jose.gomez at gmail.com writes:

 
 Hello All,
 I am faily new to android I am trying to consume a WCF web service
 using android. The service uses basicHTTPBinding but it is not REST is
 there a way to consume with SOAP?
 
 Please help
 
 thanks!
 

Hello,
please have you got success in your Android with WCF? Can you explain me please
how have you done?
Me too, I have the same problem, exactly.
Thanks in advance !


-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Android and WCF

2010-04-29 Thread Jose Gomez
I was not able to use WCF sorry
Sincerely
Jose C Gomez

http://www.josecgomez.com


On Thu, Apr 29, 2010 at 9:21 AM, Dieng diengsal...@gmail.com wrote:

 Jose C Gomez jose.gomez at gmail.com writes:

 
  Hello All,
  I am faily new to android I am trying to consume a WCF web service
  using android. The service uses basicHTTPBinding but it is not REST is
  there a way to consume with SOAP?
 
  Please help
 
  thanks!
 

 Hello,
 please have you got success in your Android with WCF? Can you explain me
 please
 how have you done?
 Me too, I have the same problem, exactly.
 Thanks in advance !


 --
 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.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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

2010-04-29 Thread Lim Sim
@Andreas Who is this special Fedex Guy?

On 29 April 2010 13:45, Andreas Reuterberg andreas.reuterb...@gmail.comwrote:

 FedEx couldn't find my tracking number either but you need to speak to
 a special FedEx Express guy and not the person you get from the chat
 link sent earlier.

 So I talked to him and he could find my name and details. Getting it
 tomorrow!




 On Thu, Apr 29, 2010 at 1:29 PM, westmeadboy westmead...@yahoo.co.uk
 wrote:
  Can anyone mention if N1 3G works in Germany on their network?
 
  On Apr 29, 2:14 pm, Lorents iva...@gmail.com wrote:
  Yupp, yupp - will get mine tomorrow :)
 
  Fedex from Veldhoven NL, to Norway,
 
  Thank you very much Google! Much appreciated!!
 
  --
  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.comandroid-developers%2bunsubscr...@googlegroups.com
  For more options, visit this group athttp://
 groups.google.com/group/android-developers?hl=en
 
  --
  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.comandroid-developers%2bunsubscr...@googlegroups.com
  For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Lim Sim
t: +44 790 4181648
f: http://www.flickr.com/photos/limsim

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: How to set Connection mode?

2010-04-29 Thread vikky
Hi..
thnx for the reply..
I have tried so many things...but not able to activate the other
connection mode..
i tried this..
  setNetworkPreference(ConnectivityManager.TYPE_WIFI)

but it is not working asking for permission again and again..and i
provided all the permission..listed below..

uses-permission android:name=android.permission.READ_PHONE_STATE/
uses-permission
uses-permission
android:name=android.permission.ACCESS_COARSE_LOCATION/uses-
permission
uses-permission
android:name=android.permission.ACCESS_NETWORK_STATE/uses-
permission
uses-permission
android:name=android.permission.CHANGE_NETWORK_STATE/uses-
permission
uses-permission android:name=android.permission.WRITE_SETTINGS/
uses-permission
uses-permission
android:name=android.permission.WRITE_SECURE_SETTINGS/uses-
permission
uses-permission
android:name=android.permission.WRITE_APN_SETTINGS/uses-
permission

However it is not working..
plz suggest me..
is it possible to chenge the connection mode of a mobile(from
TYPE_WIFI to TYPE_MOBILE) by program??
Thanks a lot...

On Apr 27, 7:30 pm, Martin Obreshkov manig...@gmail.com wrote:
 Take a look 
 athttp://developer.android.com/reference/android/net/ConnectivityManage...
  .



 On Tue, Apr 27, 2010 at 9:38 AM, vikky vikash19852...@gmail.com wrote:
  Hi all,

  I want to provide option to users...for Connection mode with web
  server for services(XML)..
  How can i set the connection to use
   Wi-Fi or
   Direct or
   MDS or
   WAP connection mode..
  Is there any way to set the connection to use SSL?
  plz help me..

  Thanks..
  Vikky

  --
  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.comandroid-developers%2bunsubscr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

 --
 When I raise my flashing sword, and my hand takes hold on judgment, I will
 take vengeance upon mine enemies, and I will repay those who haze me. Oh,
 Lord, raise me to Thy right hand and count me among Thy saints.

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Rob Green
I got mine too! Bonn, Germany.

Thanks Google!

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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

2010-04-29 Thread Andreas Reuterberg
Someone separate from the standard guy you get when using the chat link.

Basically FedEx and FedEx Express haven't got the same data so make
sure you tell them it's sent with FedEx Express.

/Andreas


On Thu, Apr 29, 2010 at 2:30 PM, Lim Sim lim@gmail.com wrote:
 @Andreas Who is this special Fedex Guy?

 On 29 April 2010 13:45, Andreas Reuterberg andreas.reuterb...@gmail.com
 wrote:

 FedEx couldn't find my tracking number either but you need to speak to
 a special FedEx Express guy and not the person you get from the chat
 link sent earlier.

 So I talked to him and he could find my name and details. Getting it
 tomorrow!




 On Thu, Apr 29, 2010 at 1:29 PM, westmeadboy westmead...@yahoo.co.uk
 wrote:
  Can anyone mention if N1 3G works in Germany on their network?
 
  On Apr 29, 2:14 pm, Lorents iva...@gmail.com wrote:
  Yupp, yupp - will get mine tomorrow :)
 
  Fedex from Veldhoven NL, to Norway,
 
  Thank you very much Google! Much appreciated!!
 
  --
  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 options, visit this group
  athttp://groups.google.com/group/android-developers?hl=en
 
  --
  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 options, visit this group at
  http://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


 --
 Lim Sim
 t: +44 790 4181648
 f: http://www.flickr.com/photos/limsim

 --
 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 options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Lim Sim
BOOM!  don't worry about the special fedex guy.  got my phone!  West
Byfleet. UK

On 29 April 2010 14:30, Lim Sim lim@gmail.com wrote:

 @Andreas Who is this special Fedex Guy?


 On 29 April 2010 13:45, Andreas Reuterberg 
 andreas.reuterb...@gmail.comwrote:

 FedEx couldn't find my tracking number either but you need to speak to
 a special FedEx Express guy and not the person you get from the chat
 link sent earlier.

 So I talked to him and he could find my name and details. Getting it
 tomorrow!




 On Thu, Apr 29, 2010 at 1:29 PM, westmeadboy westmead...@yahoo.co.uk
 wrote:
  Can anyone mention if N1 3G works in Germany on their network?
 
  On Apr 29, 2:14 pm, Lorents iva...@gmail.com wrote:
  Yupp, yupp - will get mine tomorrow :)
 
  Fedex from Veldhoven NL, to Norway,
 
  Thank you very much Google! Much appreciated!!
 
  --
  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.comandroid-developers%2bunsubscr...@googlegroups.com
  For more options, visit this group athttp://
 groups.google.com/group/android-developers?hl=en
 
  --
  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.comandroid-developers%2bunsubscr...@googlegroups.com
  For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




 --
 Lim Sim
 t: +44 790 4181648
 f: http://www.flickr.com/photos/limsim




-- 
Lim Sim
t: +44 790 4181648
f: http://www.flickr.com/photos/limsim

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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

2010-04-29 Thread gambiting
Also,received mine!

I'm from Poland, and the phone was shipped from Brightpoint, Holland.

THANK YOU GOOGLE S MUCH

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Scrollview doesn't like a complex child?

2010-04-29 Thread TreKing
On Thu, Apr 29, 2010 at 7:25 AM, Pinheiro rui.c.pinhe...@gmail.com wrote:

 What is the correct way to show a (non-scrollable) footer below
 a Scrollview?


Set weights on the footer and scrollview such that the scroll view takes up
all the extra space after the footer's size is determined.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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

2010-04-29 Thread Lucky-dog
Did anyone in HongKong, Taiwai, Singapore receive its phone? I called
Fedex and he said no package for me. I am so disappointed. Thanks.

On 4月29日, 下午10时20分, gambiting gambit...@gmail.com wrote:
 Also,received mine!

 I'm from Poland, and the phone was shipped from Brightpoint, Holland.

 THANK YOU GOOGLE S MUCH

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread feilfly
Could anyone in UK advice me where was the phone sent from?
I haven't got the phone yet. The parcel (I guess it's the google
phone) was delivered to another office on the other side of airport. I
just want to make sure my tracking number is the tracking number for
the google phone as the delivery address I gave to google is my office
address.

From my tracking number it shows it's from Birmingham
28th April 19:35Consignment data receivedBirmingham 1



On Apr 29, 3:10 pm, Lim Sim lim@gmail.com wrote:
 BOOM!  don't worry about the special fedex guy.  got my phone!  West
 Byfleet. UK

 On 29 April 2010 14:30, Lim Sim lim@gmail.com wrote:



  @Andreas Who is this special Fedex Guy?

  On 29 April 2010 13:45, Andreas Reuterberg 
  andreas.reuterb...@gmail.comwrote:

  FedEx couldn't find my tracking number either but you need to speak to
  a special FedEx Express guy and not the person you get from the chat
  link sent earlier.

  So I talked to him and he could find my name and details. Getting it
  tomorrow!

  On Thu, Apr 29, 2010 at 1:29 PM, westmeadboy westmead...@yahoo.co.uk
  wrote:
   Can anyone mention if N1 3G works in Germany on their network?

   On Apr 29, 2:14 pm, Lorents iva...@gmail.com wrote:
   Yupp, yupp - will get mine tomorrow :)

   Fedex from Veldhoven NL, to Norway,

   Thank you very much Google! Much appreciated!!

   --
   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.comandroid-developers%2bunsubscr...@googlegroups.com
   For more options, visit this group athttp://
  groups.google.com/group/android-developers?hl=en

   --
   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.comandroid-developers%2bunsubscr...@googlegroups.com
   For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en

  --
  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.comandroid-developers%2bunsubscr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

  --
  Lim Sim
  t: +44 790 4181648
  f:http://www.flickr.com/photos/limsim

 --
 Lim Sim
 t: +44 790 4181648
 f:http://www.flickr.com/photos/limsim

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en


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

2010-04-29 Thread Lim Sim
@feilfly Mine came from Brightpoint Netherlands

On 29 April 2010 15:49, feilfly feil...@gmail.com wrote:

 Could anyone in UK advice me where was the phone sent from?
 I haven't got the phone yet. The parcel (I guess it's the google
 phone) was delivered to another office on the other side of airport. I
 just want to make sure my tracking number is the tracking number for
 the google phone as the delivery address I gave to google is my office
 address.

 From my tracking number it shows it's from Birmingham
 28th April 19:35Consignment data receivedBirmingham 1



 On Apr 29, 3:10 pm, Lim Sim lim@gmail.com wrote:
  BOOM!  don't worry about the special fedex guy.  got my phone!  West
  Byfleet. UK
 
  On 29 April 2010 14:30, Lim Sim lim@gmail.com wrote:
 
 
 
   @Andreas Who is this special Fedex Guy?
 
   On 29 April 2010 13:45, Andreas Reuterberg 
 andreas.reuterb...@gmail.comwrote:
 
   FedEx couldn't find my tracking number either but you need to speak to
   a special FedEx Express guy and not the person you get from the chat
   link sent earlier.
 
   So I talked to him and he could find my name and details. Getting it
   tomorrow!
 
   On Thu, Apr 29, 2010 at 1:29 PM, westmeadboy westmead...@yahoo.co.uk
 
   wrote:
Can anyone mention if N1 3G works in Germany on their network?
 
On Apr 29, 2:14 pm, Lorents iva...@gmail.com wrote:
Yupp, yupp - will get mine tomorrow :)
 
Fedex from Veldhoven NL, to Norway,
 
Thank you very much Google! Much appreciated!!
 
--
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.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
For more options, visit this group athttp://
   groups.google.com/group/android-developers?hl=en
 
--
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.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
For more options, visit this group at
   http://groups.google.com/group/android-developers?hl=en
 
   --
   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.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
   For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en
 
   --
   Lim Sim
   t: +44 790 4181648
   f:http://www.flickr.com/photos/limsim
 
  --
  Lim Sim
  t: +44 790 4181648
  f:http://www.flickr.com/photos/limsim
 
  --
  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.comandroid-developers%2bunsubscr...@googlegroups.com
  For more options, visit this group athttp://
 groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Lim Sim
t: +44 790 4181648
f: http://www.flickr.com/photos/limsim

-- 
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 options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Alarms/Wake Locks/Sound notification question

2010-04-29 Thread code_android_festival_way
Thank you for your questions. I will add a sample app in the next
days. In addition I will test out if I am able to play simple audio
file in stand by mode on the Nexus One.

Regards

On 28 Apr., 22:40, nikhil nik...@gmail.com wrote:
 Are you atleast able to play a sound file when you are in stand by
 mode?

 On Apr 28, 2:24 pm, code_android_festival_way



 festival.s...@googlemail.com wrote:
  So well I have tested that out once more.

  I have tried different wake lock levels up to the full wake lock. It
  doesn't make any difference. As a last test I have set up a simple
  notification with:
  ...
  notification.defaults = Notification.DEFAULT_ALL;
  nm.notify(123,notification);
  ...

  This one gets started inside the WakefullIntentService which gets
  started every five minutes triggered by an Alarm which is sending a
  broadcast caught by a BroadcastReceiver which starts the service. As
  long as I have the Nexus One plugged in everything is fine. As long as
  I have the screen on everything is fine. But when I set the  phone to
  stand by unplugged from USB I am only getting the vibration but no
  sound (no LED as well, but ok that is caused by the buggy Android
  2.1).

  To sum up sound notifications do not work in stand by using this way.
  I have no idea how to get them working. Perhaps someone got another
  device running Android 2.x and would like to test that one out.

  I would love to hear your opinions.

  On 28 Apr., 18:45, code_android_festival_way

  festival.s...@googlemail.com wrote:
   Thank you very much for your answers. I will try all of your devices.

   Regarding the following:
   I dont know why you have multiple
   notifications when you can have all in one.. 

   I'd like to stop each notification on its own. So starting them
   together would not give me the choice to stop vibrate or sound on its
   own.

   Regards

   On 27 Apr., 20:13, MB manoj.bi...@gmail.com wrote:

Perhaps, for the sound notification to fire, the screen should be on.
Try acquring wakelock using different flags.

I would start with SCREEN_DIM_WAKE_LOCK and move all the way up to
FULL_WAKE_LOCK.

On Apr 27, 9:43 am, code_android_festival_way

festival.s...@googlemail.com wrote:
 Hmm does really no one got an idea what could be wrong here?

 Regards

 On 25 Apr., 19:44, code_android_festival_way

 festival.s...@googlemail.com wrote:
  Well you are right that this will drain the battery pretty heavily. 
  At
  the moment I am using the broadcast which gets fired every n seconds
  and gets caught by the receiver which handles the notifications in 
  its
  onReceive method. But well the problem remains. I haven't found a
  possibility to get the sound noitification working during the wake
  lock.

  If someone has got a solution for that problem I would love hearing
  about it. :)

  On 25 Apr., 17:17, Mark Murphy mmur...@commonsware.com wrote:

   code_android_festival_way wrote:
What do you mean exactly by that? Well I know that 30 seconds 
or even
lower is very frequent but I would let the user decide how 
often he
would like to be notified.

   I mean you may chew up a fair bit of battery life constantly 
   cycling
   through processes, starting and stopping receiver and/or service
   components every 30 seconds. I'd use the battery blame screen in
   Settings to test and see how bad this is in reality.

   --
   Mark Murphy (a Commons 
   Guy)http://commonsware.com|http://twitter.com/commonsguy

   _Beginning Android 2_ from Apress Now Available!

   --
   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 options, visit this group 
   athttp://groups.google.com/group/android-developers?hl=en

  --
  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 options, visit this group 
  athttp://groups.google.com/group/android-developers?hl=en

 --
 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 options, visit this group 
 athttp://groups.google.com/group/android-developers?hl=en

--
You received this message because you are 

  1   2   3   >