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

2010-04-29 Thread Wiebbe
I just received mine! (5 minutes ago!) It was shipped from Brightpoint in the Netherlands with FedEx! I live in the Netherlands btw! On 29 apr, 15:56, Rob Green wrote: > I got mine too! Bonn, Germany. > > Thanks Google! > > -- > You received this message because you are subscribed to the Google

[android-developers] Re: Null pointer exception

2009-12-31 Thread Wiebbe
Shouldnt you check if the bundle is null or not? Try to loop through it when you get there from a onContextItemSelected event. I'm guessing some value somewhere is null when it should be instantiated. Perhaps the intent is started quicker or without the bundle somehow so you get a nullpointer excep

[android-developers] Re: Can you put in duplicate app names on the Android Market?

2009-12-31 Thread Wiebbe
The only thing that makes an app unique is I think the package name (ie for me: nl.wiebbe.appname). Seems like a good idea as well, because name squatting sounds like a childish and useless thing. If something shows the weather, you should be able to name it weather and have the author as the chang

[android-developers] Re: How will dev phone be able to run Eclair?

2009-10-31 Thread Wiebbe
As has been noted in the blogpost you linked you can repartition your phone. This has been done a multitude of times with the cooked roms like cyanogen's one. The main issue is that you dont want to do something so potentionally dangerous for an android phone over the air. If you brick while flash

[android-developers] Re: Upgrade Dev Phone to 2.0

2009-10-29 Thread Wiebbe
You can't at this moment. The only 2.0 update currently available is the emulator one and most likely the Motorola Droid that is coming out soon in the USA. Other then that, you are at 1.6 with an Dev Phone 1. On Oct 29, 7:13 am, "vitalii.mi...@gmail.com" wrote: >  Hi , >  How can I update my De

[android-developers] Re: problem in Http Get method..can any one tell me pls...

2009-08-31 Thread Wiebbe
Looking at your code, it seems that you print the String variable Output. This variable contains the value of the URL but you never set it to anything else. I think you want to set a variable to the return value of your downloadUrl method. And some unasked advice with regards to dealing with the

[android-developers] Re: Date Picker

2009-08-31 Thread Wiebbe
I dont really see why this should not be able to be done with a spinner? You can add items to a spinner programmaticly, just calculate the 3 next days add them to the spinner? You can easily get the date from the Calendar object and then use a ArrayAdapter to add your items. I found this link th

[android-developers] Trying to receive the ACTION_PROVIDER_CHANGED intent from the gmail app

2009-06-21 Thread Wiebbe
I have been trying to catch the ACTION_PROVIDER_CHANGED intent to use and see how many unread emails there are still left. According to the documentation you can receive the action to these data. Documentation: Broadcast Action: Some content providers have parts of their namespace where they publ