[android-developers] Weird EditText behavior in Android 2.0

2009-11-19 Thread Teo [GD API Guru]
Hi,

i've bumped into some weird behavior in Android 2.0 in the emulator:
newly created AVDs show some kind of a Japanase (if i'm not mistaking)
IME when i type in the textbox. The text is shown in the IME but not
in the textbox. I've also seen that disabling certain options which
are enabled by default in Language  Keyboard settings temporarily fix
this for a number of sessions, but then it randomly reverts back...

Has anyone else seen this?

Thanks,
Teo

-- 
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 Android Developers in the US

2009-11-18 Thread Maps.Huge.Info (Maps API Guru)
As I used to tell my customers a long time ago in a place far, far
away:

Any 10 year old with a PHD in physics can do it in a week.

-John Coryat

-- 
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: the IP address of android market

2009-11-16 Thread Maps.Huge.Info (Maps API Guru)
android.clients.google.com I believe is the domain.

-John Coryat

Radar Now!

What Zip Code?

-- 
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: Choosing Dev Phone

2009-11-13 Thread Maps.Huge.Info (Maps API Guru)
You can quite easily setup an emulator that has the market app on it.
I did this once Cyrket went off the air as it's a lot easier to view
the position of my apps on the emulator than the actual device. Search
Google for that topic to find out how to do it. Free, paid and copy
protected apps can be viewed. Don't know about downloading, as I
haven't tried that, nor am I interested in doing that on an emulator.

-John Coryat

Radar Now!

What Zip Code?

-- 
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: Moving ADC non-winner to regular Market

2009-11-12 Thread Teo [GD API Guru]
Yep, that's what i did too, the package name is reserved. But i think
the name was also reserved too, i had to also change a small detail in
the name so it would accept my submission.

On Nov 12, 7:08 am, Andrei gml...@gmail.com wrote:
 i think you have to rename your package and upload as new

 On Nov 11, 11:37 pm, SR stan.r...@gmail.com wrote:



  Hi,

  I've got an application that didn't make the cut.  How can I get it to
  move/or can someone at Google please move the app from the ADC site
  back to normal Android Market panel so I can upload the updated
  version that included three more months work and, like, a zillion
  squashed bugs?

  Thanks!

  SR

-- 
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: HTC Tatto for Android Application testing

2009-11-12 Thread Teo [GD API Guru]
I would also be interested in this since Tattoo is pretty cheap
compared to other Android phones here...

On Nov 12, 8:04 am, Nemat nemate...@gmail.com wrote:
 Hey friends

 I have to buy a new Android phone for testing android applications I
 work upon.What about HTC Tatoo??

 Can I buy that one??This would be specifically for testing not for
 personal use...Can you guys help me out in choosing a good Android
 device for testing ...please

 Thanks in advance
 Nemat

-- 
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: offsetLeftAndRight() not working

2009-11-12 Thread Guru
textView.post(new Runnable() {
   public void run() {
   textView.offsetLeftAndRight(50);
   }
   });

On Thu, Nov 12, 2009 at 2:59 PM, Nithin nithin.war...@gmail.com wrote:


 After a layout means, after attaching the view to layout or after
 setContentView()...



 On Nov 12, 12:58 pm, Nithin nithin.war...@gmail.com wrote:
  Layout pass means... I dont know what layout pass means..
 
  where i have to put the offsetLeftAndRight()...
 
  On Nov 12, 12:54 pm, Romain Guy romain...@google.com wrote:
 
   Because like I said, it has to happen after the layout pass.
 
   On Wed, Nov 11, 2009 at 11:52 PM, Nithin nithin.war...@gmail.com
 wrote:
Hi Romain Guy,
 
Actually, I didnt get what you say, I am trying in this way..
 
layout = new LinearLayout(this);
layout.setOrientation(LinearLayout.VERTICAL);
TevtView tv = new TextView(this);
tv.offsetLeftAndRight(50);
layout.addView(tv, LayoutParams.WRAP_CONTENT);
setContentView(layout);
 
I am trying this way, but no effect... then, i also tried
 
setContentView(layout);
tv.offsetLeftAndRight(50);
 
still its not moving..
 
On Nov 12, 12:35 pm, Romain Guy romain...@google.com wrote:
You must call this *after* a layout. Also, this will be reset by the
next layout pass.
 
On Wed, Nov 11, 2009 at 11:34 PM, Nithin nithin.war...@gmail.com
 wrote:
 Hi,
 
 I created textview in java and trying  offsetLeftAndRight(int),
 but
 the textview is not moving at all. I am using linear layout.
 
 the code is,
 
 layout = new LinearLayout(this);
 layout.setOrientation(LinearLayout.VERTICAL);
 TevtView tv = new TextView(this);
 tv.offsetLeftAndRight(50);
 
 but the textview is not moving either horizontally or vertically..
 
 Any idea please..
 
 Thanks
 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.comandroid-developers%2bunsubscr...@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 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
 
   --
   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 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




-- 
Thanks and Regards
Gurudutt P.S.

-- 
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: Choosing Dev Phone

2009-11-12 Thread Maps.Huge.Info (Maps API Guru)
I can only give you my impressions from a user of the Dev phone 2
which has been previously released as the Google ION (at the Google IO
2009 conference).

It's a very nice device, I use it as my regular phone now, on ATT with
a $15 data plan and the usual voice plan. It works quite well, runs
1.6 perfectly, hopefully it will also run 2.0, I suspect it will or
they wouldn't be advertising it as a developer phone, most likely same
with the G1.

The G1 seems a bit clunky to me. The keyboard is weak and flimsy, plus
the processor seems slow. I've only tried one one time so take this
into account.

-John Coryat

Radar Now! #20 in News and Weather

What Zip Code?

-- 
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: Choosing Dev Phone

2009-11-12 Thread Maps.Huge.Info (Maps API Guru)
It has the usual, compass, GPS, accelerometer, camera. Check out the
specs on the developer page. Also has a good support forum:

http://groups.google.com/group/io-device

No mention of the 1 year warranty that I saw, hopefully it still has
that.

-John Coryat

-- 
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: ADC2 - Market Conflicting Names. GOOGLE, READ IT

2009-11-11 Thread Maps.Huge.Info (Maps API Guru)
Just add a period or dash to the name and that will solve the problem:

My Problem App to My Problem App.

Who will notice?

-John Coryat

Radar Now!

What Zip Code?

-- 
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: Widget Layout Frustration

2009-11-11 Thread Guru
thanks Romain.

On Wed, Nov 11, 2009 at 9:49 PM, Romain Guy romain...@google.com wrote:

 That's the common Intent.

 On Wed, Nov 11, 2009 at 1:22 AM, for android forandr...@gmail.com wrote:
  i was referring to the INSTALL_SHORTCUT in the launcher application with
  action com.android.launcher.action.INSTALL_SHORTCUT
  which refers to the Launcher application.Is there any common Intent for
  that?
 
  On Thu, Nov 5, 2009 at 9:09 PM, Romain Guy romain...@google.com wrote:
 
  Is there any common intent to create short-cuts accross Home
   applications.Because as I see it if the user is using any other
   application
   as the desktop,the short-cut is not created for those applications.
 
  Yes, there is. If it doesn't work in some Home screens, they are doing
  a poor job :)
 
  
   On Thu, Nov 5, 2009 at 11:09 AM, Romain Guy romain...@google.com
   wrote:
  
   Just create a shortcut. Apps can offer shortcuts.
  
   On Wed, Nov 4, 2009 at 9:17 PM, Susan ska...@gmail.com wrote:
Romain,
   
I understand what you're saying and I am generally in favor of not
trying to fit a square peg in a round hole. However, it seems like
there are other valid reasons for making a widget look like an
 icon.
For example, if I wanted to use a different icon for a standard app
--
maybe to make it easier to see for someone with vision problems or
 to
make it brighter so it can be seen more easily while driving. Is
there
some better way to change an icon than to make a whole new widget?
   
Thanks!
   
Susan
   
PS - Thanks, Evan, that's super helpful!
   
On Nov 4, 4:47 pm, Romain Guy romain...@google.com wrote:
No, that's not what I mean. I mean that shortcuts should look like
shortcuts and widgets like widgets. Just don't expect your code to
keep matching Home across devices, themes, versions, etc.
   
 They do EXACTLY what they say
 and don't take up any more than the minimum space;
   
You don't have to make thewidgetlook like a shortcut for that.
   
   
   
 E
   
 On Nov 4, 5:07 pm, Romain Guy romain...@google.com wrote:
 You cannot change thetextoriconof a shortcut. Just don't make
 your
widgetlook like a shortcut. There's no reason to make it look
 like
 a
 shortcut if it's awidget. It's just misleading.
   
 On Wed, Nov 4, 2009 at 2:05 PM, Evan Ruff evan.r...@gmail.com
 
 wrote:
  RG,
   
  Mywidgetmanages the state of a Service running in the
  background.
  As
  you click thewidgetit starts/stops/pauses/etc the service. I
  want
  it
  to look like a Shortcut so that it fits into the Home Screen
  seamlessly. Additionally, theiconandtextchange depending on
 the
  state of the service. Is there a way to do that using a
  shortcut
  without going with awidget? Otherwise, can you think of
 another
  way
  to use the OS-level resources to render the same sort of
 thing?
   
  Thanks!
   
  Evan
   
  On Nov 4, 4:59 pm, Romain Guy romain...@google.com wrote:
  Note that Home uses a custom view derived from TextView to
  create
  this
  effect. Also, if you want yourwidgetto look like a shortcut,
  why
  provide awidgetin the first place? It's very easy for
  applications
  to offer shortcuts and let Home take care of how it looks
  (what
  will
  happen to yourwidgetwith other Home screens? What if we
 decide
  to
  change the radius of the background behind thetext? etc.)
   
  On Wed, Nov 4, 2009 at 1:55 PM, Evan Ruff
  evan.r...@gmail.com
  wrote:
   Susan,
   
   I've tweaked it a little bit more and here is where I'm
 at:
   
 
   
 http://i243.photobucket.com/albums/ff2/gte619n/widgetLayout.png
   
   Pixel for Pixel, thetextis exactly the same. The location
   within the
   bounding box is the same, as is the distance between
   thetextand
   the
   graphic. In order to do this, I used the XML Layout and an
   XML
   drawable, no 9-patch was necessary.
   
   Here's the code:
   res/drawable/text_border.xml
   shape
   xmlns:android=http://schemas.android.com/apk/res/android
 
  solid android:color=#AA11/
  padding android:left=5dp android:right=5dp
   android:bottom=1dp android:top=1dp /
  corners android:radius=8dp /
   /shape
   
   res/layout/widget.xml
   ?xml version=1.0 encoding=utf-8?
   FrameLayout
   xmlns:android=http://schemas.android.com/apk/res/
   android
  android:layout_width=fill_parent
  android:layout_height=fill_parent
  android:layout_gravity=center
  
  LinearLayout
   xmlns:android=http://schemas.android.com/apk/res/
   android
  android:orientation=vertical
  android:layout_width=wrap_content
  

[android-developers] How to answer comments on your apps

2009-11-10 Thread Maps.Huge.Info (Maps API Guru)
I've been puzzled by the lack of ability for a developer to answer
comments made on the market by users. It has been frustrating to see
negative comments or questions made and be unable to do anything about
them...

I've found an easy to use, yet undocumented method to do this.

First, download and install your own app.

Second, wait for a comment that you need to respond to, then simply
add a comment of your own prefaced by Developer comment: - your
comment will appear as a new comment. Each comment made sticks in the
comments list, so you can effectively answer anything made on your
app.

Google should have mentioned this, it's so easy to do.

Paid apps may have a problem doing this as developers (for some
reason) can't download their own paid apps.

-John Coryat

Radar Now!

What Zip Code?

-- 
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: Can not find my own App in Android Application with G!

2009-11-08 Thread Maps.Huge.Info (Maps API Guru)
I'm just guessing here, but if your app is a paid app then you're not
allowed to download your own app for some odd reason (it's in the
terms), so if you used the same Google account to upload the app as
your G1 has, you shouldn't be able to see it on that device.

-John Coryat

Radar Now!

What Zip Code?

-- 
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: App Market Question

2009-11-08 Thread Maps.Huge.Info (Maps API Guru)
http://groups.google.com/group/android-developers/browse_thread/thread/5143e0b6db57b1d0?hl=en#

Seek and ye shall find...

-- 
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] Possible bug with Intents and PendingIntents on Android 2.0 AVD

2009-11-07 Thread Teo [GD API Guru]
Hi everyone,

i have some code that is creating and removing alarms, and which works
great in Android 1.5 and 1.6 but breaks on the Android 2.0 AVD.

The code that's giving this exception is:

  Intent intent = new Intent(context, AlarmReceiver.class).setFlags
(
  Intent.FLAG_ACTIVITY_NEW_TASK).putExtra(SleepDB.KEY_ID, 0);
  PendingIntent pi = PendingIntent.getBroadcast(context, 0 /* id
*/,
  intent, 0);

The second line has the problems, the one which actually gets the
broadcast. I pasted below the relevant part of the log:

11-07 12:08:56.042: ERROR/AndroidRuntime(242): Uncaught handler:
thread main exiting due to uncaught exception
11-07 12:08:56.062: ERROR/AndroidRuntime(242):
java.lang.IllegalArgumentException: Can't use
FLAG_RECEIVER_BOOT_UPGRADE here
11-07 12:08:56.062: ERROR/AndroidRuntime(242): at
android.os.Parcel.readException(Parcel.java:1222)
11-07 12:08:56.062: ERROR/AndroidRuntime(242): at
android.os.Parcel.readException(Parcel.java:1206)
11-07 12:08:56.062: ERROR/AndroidRuntime(242): at
android.app.ActivityManagerProxy.getIntentSender
(ActivityManagerNative.java:2053)
11-07 12:08:56.062: ERROR/AndroidRuntime(242): at
android.app.PendingIntent.getBroadcast(PendingIntent.java:230)
11-07 12:08:56.062: ERROR/AndroidRuntime(242): at
com.teo.lifestyle.sleep.Utils.deleteAlarms(Utils.java:57)

I googled FLAG_RECEIVER_BOOT_UPGRADE but there were no results. Since
this works ok on previous versions of Android i assume it's a bug..
Should i file it or have i actually missed something?

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: GPS low signal

2009-11-07 Thread Maps.Huge.Info (Maps API Guru)
You could check the list of satellites available, if none are visible,
I'm guessing that would mean you have lost the signal.

Here's some code that may help:


private TextView locGpsStatus = null ;
private Integer iGpsStatus = -1 ;

.
.
.

// Listener for GPS Status...

private final Listener onGpsStatusChange=new GpsStatus.Listener()
{
public void onGpsStatusChanged(int event)
{
if ( DOLOG ) Log.v(TEST,LocationActivity - 
onGpsStatusChange:
onGpsStatusChanged:  + Integer.toString(event)) ;

switch( event )
{
case GpsStatus.GPS_EVENT_STARTED:
locGpsStatus.setText(Started...) ;
iGpsStatus = event ;
break ;
case GpsStatus.GPS_EVENT_SATELLITE_STATUS:
GpsStatus xGpsStatus = 
locMgr.getGpsStatus(null) ;
IterableGpsSatellite iSatellites = 
xGpsStatus.getSatellites() ;
IteratorGpsSatellite it = 
iSatellites.iterator() ;
iSats = 0 ; 
// Satellite Count
while ( it.hasNext() )
{
iSats++ ;
it.next() ;
GpsSatellite oSat = (GpsSatellite) 
it.next() ;
if ( DOLOG ) 
Log.v(TEST,LocationActivity - onGpsStatusChange:
Satellites:  + oSat.getSnr() ) ;
}
if ( DOLOG ) Log.v(TEST,LocationActivity - 
onGpsStatusChange:
Satellites:  + iSats ) ;

break ;
case GpsStatus.GPS_EVENT_FIRST_FIX:
locGpsStatus.setText(First Fix...) ;
iGpsStatus = event ;
break ;
case GpsStatus.GPS_EVENT_STOPPED:
locGpsStatus.setText(Stopped...) ;
iGpsStatus = event ;
break ;
}
}
} ;

-John Coryat

Radar Now!

What Zip Code?

-- 
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: ADC2 Judging App FC

2009-11-07 Thread Maps.Huge.Info (Maps API Guru)
Now children, repeat after me:

F - U - B - A - R

Very good!

-- 
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: What does the Location accuracy mean?

2009-11-05 Thread Maps.Huge.Info (Maps API Guru)
I believe it's CEP or Circular Error Probability:

http://en.wikipedia.org/wiki/Circular_error_probable

Another words, your point can be anywhere inside the circle of X
meters diameter.

-John Coryat

Radar Now!

What Zip Code?

-- 
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: ADC2 Second Round started?

2009-11-04 Thread Maps.Huge.Info (Maps API Guru)
Probably from users who figured out how to keep your app. I see no
action on my servers for the ADC2 entries, not that I had a chance to
be in the second round anyway.

-John Coryat

Radar Now!

What Zip Code?

-- 
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: Anyone know what happened to Cyrket?

2009-11-03 Thread Maps.Huge.Info (Maps API Guru)
I believe Androidstats got their data by scraping (with an agreement
with Jay no doubt) Cyrket, so they went down together.

-John Coryat

Radar Now!

What Zip Code?

-- 
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: adc 2 Second Round

2009-10-28 Thread Maps.Huge.Info (Maps API Guru)

comedy
Hey, they haven't contacted me yet and I'm sure at least one of my
apps will make it into the next round...
/comedy

-John Coryat

Radar Now!

What Zip Code?

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

2009-10-27 Thread Maps.Huge.Info (Maps API Guru)

I'm  guessing there must be some sort of non-disclosure involved with
this Droid thing and Android 2.0, or else we would have something to
work with. It's a bit frightening to think that there could be
100,000+ devices sold on day one and I've never seen the SDK, don't
know if my app will break or have any idea what workload I'll be stuck
with when the release reaches my desk.

The real stinker here is that the popularity index in the market seems
to be tied to the retention percentage (the number of people that
download the app and keep it). If my apps malfunction on this droid
thing and 2000 people download it, find it defective and uninstall,
the app will plummet in the rankings (Radar Now is currently 60%, #28
in News and Weather and #478 overall).

-John Coryat

Radar Now!

What Zip Code?
--~--~-~--~~~---~--~~
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: NEEDED: Apps to feature on Sprint Microsite

2009-10-27 Thread Maps.Huge.Info (Maps API Guru)

The process seems straight forward to me. What do you have to lose?
Ok, so your app doesn't get 100,000 downloads in a day from the
effort. App publicity is hard to come by, especially for free. It's
seems like a deal that can't be missed, so stop the complaining and
help the promotion out. The more apps they have to promote, the better
their promotion can be.

-John Coryat

Radar Now!

What Zip Code?
--~--~-~--~~~---~--~~
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 2.0

2009-10-27 Thread Maps.Huge.Info (Maps API Guru)

We'll see here soon (tomorrow maybe?). I have an app ahead of me
that's in the 1000-5000 count range for downloads and my install
numbers are approaching 5000, so if it's absolute installs, then the
app ahead of me should move to the 5000-1 count range by tomorrow.
Interesting to find out.

-John Coryat

Radar Now!

What Zip Code?
--~--~-~--~~~---~--~~
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: NEEDED: Apps to feature on Sprint Microsite

2009-10-27 Thread Maps.Huge.Info (Maps API Guru)

Ok, so miss this opportunity for some free publicity.

-John Coryat

Radar Now!

What Zip Code?
--~--~-~--~~~---~--~~
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 2.0

2009-10-27 Thread Maps.Huge.Info (Maps API Guru)

I'm signing up for a Droid on the first day it will be out. Too bad
there isn't a simple way for developers to get their hands on these
devices without signing up for a two year contract.

-John Coryat

Radar Now!

What Zip Code?
--~--~-~--~~~---~--~~
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 2.0

2009-10-27 Thread Maps.Huge.Info (Maps API Guru)

Well, perhaps it might be a good idea when those of us who can get
these things offer to others who need it testing services with logcat
output.

-John Coryat
--~--~-~--~~~---~--~~
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: Google wave invitations...?

2009-10-15 Thread Guru
I want it.Thanks very much!

On Fri, Oct 16, 2009 at 9:11 AM, Kenneth Adam Miller 
kennethadammil...@gmail.com wrote:

 Who wants to be in Google wave?
 I have 16 invitations

 



-- 
Thanks and Regards
Gurudutt P.S.

--~--~-~--~~~---~--~~
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: Market screen shots

2009-10-14 Thread Maps.Huge.Info (Maps API Guru)

I had no problem adding screen shots to my free apps. I have no paid
apps, so perhaps the mix is causing an issue.

Strangely, the market asks for 320x480 screen shots then reduces them
in size by a few pixels, and sort of smudging them in the process. It
seems like it would have been smarter to ask the developer to deliver
the properly sized image so that this pixilation wouldn't be
necessary.

-John Coryat

Radar Now! (just passed 5000 downloads!)

What Zip Code?
--~--~-~--~~~---~--~~
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 do ListView dynamic item growing?

2009-10-13 Thread Guru
OnScrollListner there is an example in the API demos.

On Tue, Oct 13, 2009 at 2:12 PM, wangxueming m.wongxm...@gmail.com wrote:


 Now I want to make a  ListView,with 20 items,
 Then when it scroll to the end,
 I get new data and add to the end of ListView dynamic.

 Just Like ListView in Android Market.

 Thanks!
 



-- 
Thanks and Regards
Gurudutt P.S.

--~--~-~--~~~---~--~~
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: Users have trouble upgrading my app in Android Market - anyone else?

2009-10-13 Thread Maps.Huge.Info (Maps API Guru)

I have an even weirder problem with one of my apps. In the market,
when my What Zip Code? app is clicked on, it shows a loading
message that occupies the top 1/3 of the screen. It never loads
anything. If you do a back key, then go back into it, the app
description displays fine. Strangely, my other app doesn't have this
problem.

The only Android phone I can test this on is my own. If someone else
could test this for me, I'd appreciate it. Just search for Zip Code
and it should pop up.

Thanks in advance. Hopefully it's only my phone that has the problem.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Someone advertising pirated apps by posting feedback on market and pointing to his Twitter account

2009-10-12 Thread Maps.Huge.Info (Maps API Guru)

Have you marked the post as spam? It's easy to do in the market app,
just long press on the comment or click on the x to the right of the
comment to flag it as spam. That's about all you can do as far as I
know.

-John Coryat

Radar Now!

What Zip Code?
--~--~-~--~~~---~--~~
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: Sometimes the running emulator is not found from within Eclipse?!

2009-10-10 Thread Guru
+1 i have also ecountered this umpteen times on Windows XP.

Sometimes it does not take recognise the internet connectivity.Only a
restart helps

On Sat, Oct 10, 2009 at 7:01 PM, Mariano Kamp mariano.k...@gmail.comwrote:

 Hi,

   when launching my app from within Eclipse, sometimes the running emulator
 is found and displayed in the launch dialog, sometimes it isn't?! Killing
 adb, the emulator and Eclipse usually helps ... until it happens again.

   Any idea why this is? I see this behavior since the launch of Android.

   I am running on Mac OS X. And it happened on Leopard as well as Snow
 Leopard.

 Cheers,
 Mariano

 



-- 
Thanks and Regards
Gurudutt P.S.

--~--~-~--~~~---~--~~
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: Double uses-permission list when uploading to Market?

2009-10-08 Thread Maps.Huge.Info (Maps API Guru)

Just a bug in the market upload program, the permissions show
correctly in the market app itself, so no worries.

-John Coryat

Radar Now!

What Zip Code?
--~--~-~--~~~---~--~~
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: Where have all the Google employees gone?

2009-10-08 Thread Maps.Huge.Info (Maps API Guru)

I had:

Radar Now: 109
What Zip Code: 99

I know this because my app communicates with our server and leaves
behind important information like version. If I had known that OS
version would matter, I would have transmitted that as well.

Google has been mum about the contest, which is probably what they
should be doing.

-John Coryat

Radar Now!

What Zip Code?
--~--~-~--~~~---~--~~
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] WVGA Widget issues??

2009-10-07 Thread Guru
I have been able to scale-up my application in WVGA skins pretty easily for
my app.But in WVGA mode the widget seem to be not working as
desired.Sometimes the widget just gives the message No more room in the
Home Screen even though there is space.Some times it takes up the whole
screen without considering the size mentioned in the configuration files.And
even strangely sometimes it hust gives me the desired behaviour.Are there
are any know issues for the WVGA mode as far as widgets are concerned.

--~--~-~--~~~---~--~~
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: ADC2 First Round Complete?

2009-10-06 Thread Maps.Huge.Info (Maps API Guru)

Especially for the ones who are left standing!

-John Coryat

Radar Now!

What Zip Code?


On Oct 6, 4:33 pm, CraigsRace craig...@gmail.com wrote:
 Allowing an app update would go against their own rules, so it would
 be very controversial.  Having said that, IMO, I wouldn't mind if they
 did allow it for broken apps only (which I imagine are only a select
 few).

 On Oct 7, 5:40 am, Hong lordh...@gmail.com wrote:

  I agree it's due to the Donut update that broke quite  a few apps there.
  Wouldn't surprise me if they allow an app update for the next round.


--~--~-~--~~~---~--~~
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: Where have all the Google employees gone?

2009-10-06 Thread Maps.Huge.Info (Maps API Guru)

1.6 is out. It's been pushed to T-Mobile users (at least in the US)
and is available as an official download for the Google ION directly
from the HTC site. I just updated my device to 1.6 and thankfully, my
apps still run.

The new market app shows the screen shots that can be uploaded, so
it's a nice update. There seems to be a lot of small changes and (this
could be my imagination) the phone seems to run faster an smoother.

-John Coryat

Radar Now!

What Zip Code?

On Oct 6, 10:02 pm, niko20 nikolatesl...@yahoo.com wrote:
 Also, I don't think 1.6 is officially out as a image update/download.
 I think if people are using it they are using an unofficial compiled
 ROM. This may be the real problem.

 On Oct 6, 9:57 pm, niko20 nikolatesl...@yahoo.com wrote:

  What API's are you guys using that just going from 1.5 to 1.6 broke
  stuff? I would think 1.6 would have been properly back-compatible...

  On Oct 6, 8:58 pm, bellapariah bellapar...@gmail.com wrote:

   What is Google just dropped the 25 lowest scores for every app? There
   would still be 75 reviews to give a relatively accurate average rating
   and it would be fair for all without giving benefits to select
   developers.

   On Oct 6, 6:48 pm, bellapariah bellapar...@gmail.com wrote:

Thread for developers to discuss problems with 1.6 update and effects
on ADC2. If you see other forums or articles on the issue or if you
are one of the unlucky developers affected by the the untimely 1.6
update, please post is here!

Releasing 1.6 in the middle of a contest is unacceptable. According to
the official terms and conditions:

a. SUBMISSION OF ENTRIES: To qualify for a Prize, an Entry to the
Challenge consists of an original application that is written using a
version of the Android Software Development Kit (SDK) (available 
athttp://developer.android.com) that validly executes on Android version
1.5. The SDK contains instructions, documentation, and all necessary
tools to enable a Participant to build an Android application.

My App as well as many other ADC2 apps worked fine on 1.5 but started
force closing after the 1.6 update. Programmers were told to develop
an application for 1.5, not 1.6, and were not given the tools or
opportunity to test our apps with 1.6. In my case, I have had 95
people test my app for Round 1 judging, but 27 of those were force
closes due to the 1.6 update. This is because of an issue with a
Google API that was updated with 1.6. Here are links to other people
discussing the 1.6 issue:

   http://groups.google.com/group/android-discuss/browse_thread/thread/7...

   http://groups.google.com/group/android-discuss/browse_thread/thread/a...

   http://groups.google.com/group/android-discuss/browse_thread/thread/5...

   http://groups.google.com/group/android-developers/browse_thread/threa...

   http://www.google.com/support/forum/p/Android+Market/thread?tid=5d754...

   http://androidandme.com/2009/10/news/did-google-fumble-the-android-1-...

   http://polyclefsoftware.blogspot.com/

One suggestion would be to remove the last 25% of reviews of every app
in the contest (the ones most likely to have been affected by 1.6
upgrades) to reduce the negative effects of the 1.6 release.

How many others were affected? Any solutions to fix the problem?

Shelby


--~--~-~--~~~---~--~~
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 assets that are larger than 1M?

2009-10-06 Thread Maps.Huge.Info (Maps API Guru)

With that much data, the better choice would be to query a web server
and leave your app light weight and nimble. Anything that big will not
only take too long to download but will fill up way too much space on
the device. Using a web server might even execute faster than using an
internal large database.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Question on task affinites

2009-10-05 Thread Guru
Thanks I got the required functionality from Music Player application :


!--
This is the current music playing panel, which has special
launch behavior. We clear its task affinity, so it will not
be associated with the main media task and if launched
from a notification will not bring the rest of the media app
to the foreground. We make it singleTask so that when others
launch it (such as media) we will launch in to our own task.
We set clearTaskOnLaunch because the user
can go to a playlist from this activity, so if they later return
to it we want it back in its initial state. We exclude from
recents since this is accessible through a notification when
appropriate.
--
−
activity android:name=MediaPlaybackActivity
android:theme=@android:style/Theme.NoTitleBar
android:label=@string/mediaplaybacklabel android:taskAffinity=
android:launchMode=singleTask android:clearTaskOnLaunch=true
android:excludeFromRecents=true



On Mon, Oct 5, 2009 at 7:34 PM, for android forandr...@gmail.com wrote:

 Here's my requirement:

 I need to start an Theme Dialog activity from a widget.From this widget I
 need to start another activity from another application and get the result
 from there to be used in the Theme Dialog activity.

 Now if I have the application in standard mode,then this activities becomes
 a part of my  activity task(which I donot want).I tried the following modes:

 singleInstance-- here the problem was that i could not get the result from
 another activity.
 singleTask   --- here the problem was that this became a part of my
 application activity stack.

 How do I solve this issue?What I need is that my dialog activity to be a
 different task and it should still be able to start its new activities to
 get results
 .
 Thanks




 



-- 
Thanks and Regards
Gurudutt P.S.

--~--~-~--~~~---~--~~
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: Update to 1.6 stops some ADC2 apps from working

2009-10-05 Thread Maps.Huge.Info (Maps API Guru)

To me, the right thing to do would be to stop the first phase of this
contest now, select the to 200 apps, figure out which ones bomb from
1.6 and give the developer a change to only change the bits that are
causing the problems. There would have to be some controls to prevent
upgrades and assurances to the rest of the developers that nothing
else was changed to improve their apps or allow everyone to update,
which would probably really annoy the heck out of anyone who figured
out they had a problem on September 2nd and didn't make it to the
finals.

On the other hand, if your apps are failing because you used
undocumented options in the SDK, then you only have yourself to
blame...

-John Coryat

Radar Now!

What Zip Code?

On Oct 5, 2:18 pm, bellapariah bellapar...@gmail.com wrote:
 Someone from Google please comment or at least give contact info! My
 issue has to do with one of Google's API changes for 1.6 so it isn't
 even a programming error on my part. I'm sure my ADC2 entry will get
 low scores from everyone that upgrades to 1.6 since they can no longer
 join rooms (calling issue with 1.6), and therefore cannot test the
 app. Google should at least issue a statement letting testers know
 that upgrading to 1.6 may cause some apps to stop working and to
 please skip these so that 1.5 testers can give them an accurate
 review.

 Has Google completely abandoned this contest? Why have they not been
 actively participating, answering developer questions, and building
 buzz and excitement around the contest? This contest is supposed to
 persuade programmers to develop for Android, not screw them over after
 months of hard work then ignore them when their is a problem. Maybe if
 their are enough developers affected we can get the attention of tech
 sites and get some publicity for the issue.

 Shelby

 On Oct 4, 11:31 pm, bellapariah bellapar...@gmail.com wrote:

  I just got the 1.6 download and found out myADC2app is not working
  anymore. Works fine on 1.5 but people with 1.6 can't log in. Guess
  that explains the sudden drop in new accounts being created (We got
  around 70 testers before numbers plummeted to 5 to 6 over the
  weekend). :(  If Google planned to release 1.6 in the middle of a
  contest, they should have informed developers and given them the tools
  to test their app on this platform. We spent months on creating a high
  quality app for this contest and now people can't even judge it! There
  are probably hundreds of other developers that spent sleepless nights
  working their butt off to finish before the deadline just to have
  their chances decimated by google. All I can say is that I'm extremely
  disappointed in the way Google has handled this entire contest and I
  think it is extremely unfair and inconsiderate the way they are
  treating developers that they are supposed to be attracting to the
  Android platform.

  Shelby


--~--~-~--~~~---~--~~
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: ADC2 submissions and Android 1.6 (Donut)

2009-10-02 Thread Maps.Huge.Info (Maps API Guru)

On the other hand...

For those that had a submission with a terminal error, it will put
doubt into the minds of the judges as to the cause of the error: poor
programming or 1.6.

-John Coryat

What Zip Code

Radar Now!
--~--~-~--~~~---~--~~
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: Can I get user's gmail address or handset SN to verify them?

2009-10-02 Thread Maps.Huge.Info (Maps API Guru)

What about:

Settings.Secure.getString(getContentResolver(),
Settings.Secure.ANDROID_ID)

How unique/stable is this setting?

I've been using it and it seems to work fine, at least for now.

-John Coryat

Radar Now!

What Zip Code?
--~--~-~--~~~---~--~~
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: What would cause a DeadObjectException?

2009-10-01 Thread Guru
When the remote process gets killed by the OS,then you get a
DeadObjectException.

Any process might get killed by the OS depending on system requirements.



On Thu, Oct 1, 2009 at 10:22 AM, yukinoba ckmagic...@gmail.com wrote:


 to dear all Android developers and fans,

 Does anyone ever meet a android.os.DeadObjectException thrown by a
 remote service in Android? The problem I met is, the transact method
 in the service binder interface threw this exception to me.

 I wrote a remote service, and called it through the service binder.
 However, in the line of the binder interface (which is generated
 automatically AIDL interface) mRemote.transact(Stub.TRANSACTION_open,
 _data, _reply, 0);, it threw a android.os.DeadObjectException to
 me.

 I have read the definition of DeadObjectException, it says this
 exception means The object you are calling has died, because its
 hosting process no longer exists.. However, I checked this with my
 DDMS, and it showed the process of the remote service still exists.

 So, is there any other possible reason to make this exception
 happened? or could someone here tell me how to avoid this exception?

 Thanks for all your kind.

 Best regards,
 Nicholas
 



-- 
Thanks and Regards
Gurudutt P.S.

--~--~-~--~~~---~--~~
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 Closing, Task affinity

2009-10-01 Thread Guru
look  at onResume()

On Wed, Sep 30, 2009 at 4:59 PM, Siju siju.mat...@gmail.com wrote:


 How can I force an activity to close when user presses Home button or
 navigates out of the activity?

 Do I get a callback when focus goes out of the activity? I cannot see
 that in the Activity callback methods.

 My intention is to make sure that my activity is refreshed each time
 user starts the activity and lose all state.

 How can I start my Notification View (view after clicking on
 notification) to start in a new task instead of connecting to the
 existing task of my application (if it is open). For example if user
 clicks on notification from homescreen, I want the view to go back to
 main screen or whatever the user was doing before that when the
 Notification Window is closed.


 



-- 
Thanks and Regards
Gurudutt P.S.

--~--~-~--~~~---~--~~
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: ADC2 submissions and Android 1.6 (Donut)

2009-10-01 Thread Maps.Huge.Info (Maps API Guru)



On Sep 30, 11:00 am, ander...@phdgaming.com ander...@phdgaming.com
wrote:
  The second round of judging also includes user judging - 40% of the
  outcome if I remember correctly.

 I believe you are incorrect on this.  This first round of judging is
 user judging, and makes up 40% of an apps final rating. The second
 round is all expert judging by Google that counts for the remaining
 60% and has no user judging. The applications final rating and
 placement is determined by both rounds.

From http://code.google.com/android/adc/adc2_terms.html

b. JUDGING: All Qualifying Entries for the Second Round Judging will
be judged by (1) end users of Android-powered handsets who choose to
participate in judging, whether or not they participated in First
Round Judging (Community Judges), and (2) a panel of experts in the
fields of mobile devices, cellular telecommunications, software
development, and/or technology innovation (Expert Judges). Google
will select the Expert Judges from the member organizations of the
Open Handset Alliance, from Google, or from other organizations.

Clearly, second round judging will include end users.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: ADC2 submissions and Android 1.6 (Donut)

2009-09-30 Thread Maps.Huge.Info (Maps API Guru)

The only fair solution would be to make sure the judging app doesn't
function on 1.6

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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] Regarding short cut icon

2009-09-30 Thread Guru
I found this peice of code for creating short-cut at the dektop:




  Intent shortcutIntent = new Intent
(Intent.ACTION_MAIN);
shortcutIntent.setClassName(this, this.getClass
().getName());

Intent intent = new Intent();
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT,
shortcutIntent);
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, hello);
Parcelable iconResource =
Intent.ShortcutIconResource.fromContext(
NoteView.this,  R.drawable.short_icon);
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
iconResource);
intent.setAction(Intent.ACTION_CREATE_SHORTCUT);
getApplicationContext().sendBroadcast(intent);




I wanted to know is there any way of giving a Bitmap as the short-cut
icon,instead of an existing drawable in the resource folder.

-- 
Thanks and Regards
Gurudutt P.S.

--~--~-~--~~~---~--~~
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: Now ADC2 judging has begun.

2009-09-29 Thread Maps.Huge.Info (Maps API Guru)


 Short POLL: Do you face this issue, too [or not?] ?

I've got a Google ION (Magic sort of) and so far, 90% have downloaded
directly out of the app. Perhaps a little more patience is in order.

One thing that may affect my success. I usually do the judging app
after business hours, so the market might be less busy.

As for interest in judging, it seems to be waning. Here's the
breakdown of hits on my 3 ADC2 entries:

 Day  Hits
09/24  14
09/25  32
09/26  37
09/27  36
09/28  26

Sort of a classic bell curve, interest in judging seems to be in the
decline with the height around day 3. Of course, it might just be my
apps, they are US specific or the weekend. Time will tell.

Any other results from the field?

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Updating ADC2 entry in second round

2009-09-28 Thread Maps.Huge.Info (Maps API Guru)

http://lmgtfy.com/?q=adc2+terms+and+conditions


Especially:

9. SECOND ROUND JUDGING

a. ENTRIES: Second Round Judging is only for entries selected as
Qualifying Entries in the First Round Judging. The same application
submitted by these Participants for the First Round will be
distributed for judging in the Second Round. There is no opportunity
to improve or modify an application between the First and Second
Rounds of Judging.
--~--~-~--~~~---~--~~
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: ADC2: Low volume of judges

2009-09-27 Thread Maps.Huge.Info (Maps API Guru)

 I wonder how many of the users judging the applications have submitted
 their own applications and are just voting other applications down to
 improve their own chances of winning...

That's a rather cynical view, however, one that's probably close to
the mark in a lot of cases.

I've been testing apps since the judging began and frankly, the
judging app is slanted toward apps that can produce the desired result
with little or no user interaction or understanding of what the app
does. If you require the user to actually understand what you're
offering, with registration and other details, you're in for a bad
time in ADC2. I think it was probably less than ideal that the judging
app can only work one article at a time. It might have been more fair
and even if it could have held a universe of apps the user would like
to try out.

-John Coryat

Radar Now!

What Zip Code?
--~--~-~--~~~---~--~~
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] ADC2: Low volume of judges

2009-09-26 Thread Maps.Huge.Info (Maps API Guru)

I have three apps in ADC2 and so far have seen a total of 63 users run
them.

There seems to be a very low number of judges participating in ADC2.
I've seen no publicity at all, no mention in the tech press, no TV
coverage, nothing to indicate this contest is running.

I'm guessing that the majority of judges at this point are developers.
Won't that skew the results? Is this supposed to be a developer or
user contest?

-John Coryat

Radar Now!

What Zip Code?
--~--~-~--~~~---~--~~
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: Potential issues I've found with the way ADC2 is working for games

2009-09-26 Thread Maps.Huge.Info (Maps API Guru)

There should also be a rating for functionality.

I've reviewed about 50 or so apps and at least 10 have had major
malfunctions or didn't function at all. Things like force close, maps
that were blank (probably no key) and buttons that had no function.
There was even one that simply had Hello, start activity and that's
it. Rather than sounding like a sour puss and giving all one stars, it
would be more appropriate to just indicate it plain didn't work at
all.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: See the Google app store without having cell phone service ??

2009-09-26 Thread Maps.Huge.Info (Maps API Guru)

Check out http://www.cyrket.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: ADC2: Low volume of judges

2009-09-26 Thread Maps.Huge.Info (Maps API Guru)

 1) This belongs to android-discuss, it has nothing to do with
 developing apps using the public SDK

Maybe. There are enough conversations regarding ADC2 on this forum to
make it relevant. If Google would open an ADC2 forum, that would be a
better place.

 2) TV adds? Are you kidding us or you really want to have TV ads in
 all countries where Android phones are sold? :)

Where in my post did I mention TV ads? TV coverage is about media
exposure. You may have heard of CBS, CNN, CNBC and the other networks.
They put enough time into covering lottery jackpots, spelling bees,
pie eating and other events, why not this contest?
--~--~-~--~~~---~--~~
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: Now ADC2 judging has begun.

2009-09-25 Thread Maps.Huge.Info (Maps API Guru)

I have to agree that any complex or involved apps will not make it
with the way the judging app is written. Google should have made it so
you could keep the apps you're judging for a while at least, in some
sort of special directory, so you could use them for a few days before
deciding if they were worth it or not. Making instant decisions on how
good it is will defeat a number of well deserving apps.

On the other hand, all my entries are exactly the type that can be
easily judged in this fashion. They require no user input, no
instructions, no sign in or registration, barely any knowledge about
the actual topic and are easy to understand, so for me, the app is
slanted in my favor... Good on that but it would be better for the
developer community if this thing was written so the apps would stay
around for at least the judging period.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Now ADC2 judging has begun.

2009-09-25 Thread Maps.Huge.Info (Maps API Guru)

Last night I reviewed about 20 apps also and had no problems at all.
Today, I've not been able to review a single one. I get stuck in the
download stage as well.

It's probably due to the higher volume on the market right now.
Perhaps someone at Google forgot to throw some switch to turn on
additional servers?

-John Coryat

What Zip Code?

Radar Now!

--~--~-~--~~~---~--~~
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: Now ADC2 judging has begun.

2009-09-24 Thread Maps.Huge.Info (Maps API Guru)

How do you figure? I see no announcements, no way to download a
judging app, no blog entries, news stories, CNN message on the
scroll...

I did see an entry in the log from somebody running one of our
entries, so maybe testing has begun.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Now ADC2 judging has begun.

2009-09-24 Thread Maps.Huge.Info (Maps API Guru)

How the devil are regular users going to be to:

1. Know ADC2 exists.
2. Find the judging app.

I will bet that the majority of judges will be developers! Talk about
a tainted jury!

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Now ADC2 judging has begun.

2009-09-24 Thread Maps.Huge.Info (Maps API Guru)

I have to say that the judging app is a bit disappointing. There is no
way I can see to skip an app, or if it's not applicable (such as
traffic in England - I'm in the US), to not judge it. There should be
a way to indicate NA and continue. How do you judge an app that you
can't run? All 1 stars? All 5 stars? Either way, it's not a valid
result. It certainly makes the judges less than satisfied with the
results.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Now ADC2 judging has begun.

2009-09-24 Thread Maps.Huge.Info (Maps API Guru)

Oop!

You can hit the menu button and then Skip - that should be more
obvious to the users.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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 take a screencast demo of app

2009-09-24 Thread Maps.Huge.Info (Maps API Guru)

DDMS tool

Device - screen capture.

You'll have to be running in the emulator or connected to ddms through
the USB cord.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Trying to get Javascript on Android

2009-09-20 Thread Maps.Huge.Info (Maps API Guru)

The reason they don't work on the Android browser (or webkit for that
matter) is that they are using mouse events. If you want to use that
code on the Android you have to use touch events instead. Try reading
up on the following:

touchstart - finger touches the screen
touchmove - finger is moving
touchend - finger leaves the screen

It looks to me like the first example you listed should be fairly easy
to update to touch.

If you use these events, you should get better results. There's some
good documentation for this in the iPhone docs. You'll have to search
for it, but they have code examples as well.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Trying to get Javascript on Android

2009-09-20 Thread Maps.Huge.Info (Maps API Guru)

It probably will work, mouse and touch events won't happen
simultaneously.

As for touch, you can have multiple finger touches (think iPhone)
which can be interpreted differently than anything that can be done
with a mouse. Android doesn't (I believe) support gestures at this
point but may in the future.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Trying to get Javascript on Android

2009-09-20 Thread Maps.Huge.Info (Maps API Guru)

One other thing...

I've found differences between the way iPhone and Android handle
events. Mouse events on the iPhone are handled differently on Android,
so keep that in mind as well.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Trying to get Javascript on Android

2009-09-19 Thread Maps.Huge.Info (Maps API Guru)

In a word: YES!

Implementations of JavaScript vary across all the major platforms, you
have to be very careful about testing, test and more testing each time
you make a change to any code on a web page. The worst offenders are
IE6 and IE7. Safari has plenty of quirks and as the iPhone is a
variant of Safari, you'll have to have an actual device (or the
emulator at least) to test on as well. The most compliant is FireFox,
and the Android browser will work pretty well if it works in FF,
however, the events are different. Search for touch events to see
how to handle them in regard to mouse events.

GWT has solved a lot of these issues but if you want to code in raw
JavaScript, then you'll need to be very careful.

-John Coryat

What Zip Code?
Radar Now!
--~--~-~--~~~---~--~~
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: Trying to get Javascript on Android

2009-09-18 Thread Maps.Huge.Info (Maps API Guru)

I think a lot of developers, especially ones from the web world,
forget that these mobile devices are like desktop computers of the
mid-90's in power and speed. Trying to get a complex JavaScript
application to run on the phone is probably going to be disappointing.
Just because it runs on FF with your quad core monster doesn't mean it
will do anything but cry for momma on the actual mobile device.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Trying to get Javascript on Android

2009-09-18 Thread Maps.Huge.Info (Maps API Guru)

You can easily test your device's browser JavaScript capabilities by
calling up a Google Map API (v3 is best on mobile) application. Here's
one you can try:

http://www.usnaviguide.com/v3maps/ProjectedOverlayTest.htm

If this map works, you have JavaScript enabled.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Disable WebKit JavaScript security for XMLHttpRequest

2009-09-17 Thread Maps.Huge.Info (Maps API Guru)

Use JSON instead. No cross domain security with that method.

-John Coryat

What Zip Code?
Radar Now!
--~--~-~--~~~---~--~~
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: HttpURLConnection getResponseCode

2009-09-17 Thread Maps.Huge.Info (Maps API Guru)

I had this problem as well. I solved it by looping until I got a 200
response. It's 100% effective.

Here's is the relevant code:

http_response_code = -1 ;
HttpURLConnection conn = null ;
int iRetry = 0;
while ( iRetry  10 ) {
iRetry++ ;
try {
conn= (HttpURLConnection)myFileUrl.openConnection();
conn.setConnectTimeout (3) ;
conn.setDoInput(true);
conn.connect();
http_response_code = conn.getResponseCode() ;
} catch (IOException e) {
e.printStackTrace();
http_response_code = -1 ;
}
// Status code HttpURLConnection.HTTP_OK == 200...
if (http_response_code == HttpURLConnection.HTTP_OK ) {
iRetry = 10 ;
}
}

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Request to official ADC2 team.

2009-09-14 Thread Maps.Huge.Info (Maps API Guru)

+
--~--~-~--~~~---~--~~
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: unique phone id....

2009-09-13 Thread Maps.Huge.Info (Maps API Guru)

I'm using:

Settings.Secure.getString(getContentResolver(),
Settings.Secure.ANDROID_ID)

as a unique id for the phone. It doesn't require any additional
permissions and seems to be unique. Someone correct me if I'm wrong...

-John Coryat

What Zip?

Radar Now!
--~--~-~--~~~---~--~~
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: Uploading Screen Shots of App to Android Market

2009-09-11 Thread Maps.Huge.Info (Maps API Guru)

I had no trouble uploading my screen shots. Make sure you have no
alpha, which may mean in your case using 8 bit PNG's instead of 24.
You also may have selected to use transparency in your PNG's which
would cause trouble. Make sure you have the exact size asked for as
well.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: external flash app?

2009-09-10 Thread Maps.Huge.Info (Maps API Guru)

If you want to depend on an external flash to trigger the camera, and
use that flash to improve the picture, I think you'll find that
impossible as the camera is way too slow to react to such a sudden
event. Try triggering the camera manually. It takes about a second
before the image is captured, by then, the flash would be half way to
the moon...

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Development phones ??

2009-09-08 Thread Maps.Huge.Info (Maps API Guru)

The problem with a non-development phone (or a locked one) is that the
carriers demand such unreasonable terms, like two year contracts and
all. In my area, T-Mobile is available but doesn't work in my home.
The 3-g here for T-Mobile is slower than dial-up and is only available
in a tiny fraction of the local area as well. ATT has better service,
the ION I have only has the Edge network but it works far better than
T-Mobile.

If I was forced to go with T-M, I would have a rotten experience, a
long contract and two phone numbers. My ION works with ATT without a
contract, I pay only $15 a month for a data plan and am quite happy
with the service.

You can still buy an ION off eBay, although they are getting way too
expensive.

-John Coryat

What Zip Code?
Radar Now!
--~--~-~--~~~---~--~~
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: After ADC 2 feedback

2009-09-08 Thread Maps.Huge.Info (Maps API Guru)

All I can say to this is:

Good food takes time, be patient!

(my mother)

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: Hmm... at last ADC2 is out of our way ... tell about your app and experience

2009-09-07 Thread Maps.Huge.Info (Maps API Guru)

Name: Radar Now!
Category: Travel
By: John Coryat, USNaviguide LLC

Description:
Radar Now carefully fixes your location to display the animated
weather radar and current conditions closest to you.

The beauty of this application is its speed and simplicity. Radar Now
requires no user input or configuration to retrieve the display.

Website: (screen shots anyway)

http://maps.huge.info/blog/2009/09/new_android_app_radar_now.html

This app is on the market now (free).
--~--~-~--~~~---~--~~
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: Free space required for a package install

2009-09-07 Thread Maps.Huge.Info (Maps API Guru)

You might start with an app that installs just the framework, then use
an internal function to install the graphics and anything that takes
up a lot of space. That way the package installer won't hog all the
space.

-John Coryat

What Zip Code?

Radar Now!
--~--~-~--~~~---~--~~
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: The ADC2 require the application that I submitted operates in only G1?

2009-09-05 Thread Maps.Huge.Info (Maps API Guru)

Whatever, it's too late to do anything about it so I suggest you sit
back and enjoy.

-John Coryat

What Zip Code?
--~--~-~--~~~---~--~~
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: Hmm... at last ADC2 is out of our way ... tell about your app and experience

2009-09-03 Thread Maps.Huge.Info (Maps API Guru)

Our entry is

Name: What Zip?
Category: Productivity/Tools
By: John Coryat, USNaviguide LLC

Description:
This application carefully fixes your location to determine your USPS
Zip Code (US Only).

Displays the results as a shaded outline of the Zip Code along with
your location and closest street on a map.

Website:

http://www.usnaviguide.com/zip.htm

The app is a companion to this website. We have about 250,000 monthly
visitors to the site that are mostly business professionals interested
in territory management, real estate and other things. The app is on
the market and has had about 1200 downloads, pretty amazing
considering the small number of Android devices.

ADC2 impressions:

I received one of the Google ION phones at Google IO back in May. I
had been working on iPhone apps but switched to Android to develop an
entry for the contest. It took me from May 27th to August 5th to get
this one ready and I had about 3 solid weeks of testing the app before
submitting it. The members of this forum and especially Mark Murphy
helped immensely. I believe the contest was designed with developers
like me in mind. I hadn't considered working with Android before and
when Google handed me one of those beautiful ION's, I couldn't help
but dive into the system.

I have no illusions that this app will do anything but entertain a few
judges, it's not earth shattering or polished like the winners in
ADC1, but for those that want to know what zip code they're in, our
app is the absolute best tool ever created. The only alternative would
be to knock on someone's door and ask them what their zip code is.
I've done this to test the app and have had some very odd responses,
mostly they won't answer!
--~--~-~--~~~---~--~~
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: Can I leave some info after my app is uninstalled?

2009-09-03 Thread Maps.Huge.Info (Maps API Guru)

On a slightly different topic but related...

It would be great if there was a method called when the app is
uninstalled. My apps connect with a web server and knowing when a user
uninstalls the app would allow cleanup of information the user left
behind. As it sits, I don't know if a user uninstalled the app or
simply isn't using it for a while.

Also, it would be nice to have the feedback the user inputs when the
app is uninstalled. I see no way of accessing that information. Is it
available somewhere?

-John Coryat

What Zip?
--~--~-~--~~~---~--~~
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: ADC app conflicting with marketplace app

2009-09-03 Thread Maps.Huge.Info (Maps API Guru)

Did you change your package name in the manifest?

-John Coryat

What Zip Code?
--~--~-~--~~~---~--~~
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: Google Android Challenge II bugix..!

2009-09-03 Thread Maps.Huge.Info (Maps API Guru)

You knew the rules for months in advance, so who can you blame for not
properly testing your app?

In a way, the rules of this challenge are a lot like the real world of
projects, deadlines and customer expectations. You have a deadline and
the customer (Google in this case) expects to have a reasonably well
running app when they pay the bill. Deadlines in the real world are
serious and meaningful.

Personally, I applaud the way Google has worked this out.

-John Coryat
--~--~-~--~~~---~--~~
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 display an animated GIF file

2009-09-01 Thread Maps.Huge.Info (Maps API Guru)

Animated gif's aren't supported by the current version of the Android
browser. It's been noted as a bug and should be fixed in some future
release of the OS.

What you can do is do the animation with JavaScript. You'll need
access to each individual frame as separate images, it's fairly
simple, Google JavaScript Timed Image Animatation for examples.

-John Coryat
--~--~-~--~~~---~--~~
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 switch eclipse logcat from emulator to device and back again

2009-08-31 Thread Maps.Huge.Info (Maps API Guru)

Have you tried using DDMS to select the source?

-John Coryat
--~--~-~--~~~---~--~~
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: ADC 2 Submission Site -- Now live

2009-08-30 Thread Maps.Huge.Info (Maps API Guru)

I suggest you read this entire thread, the answer is there.

-John Coryat
--~--~-~--~~~---~--~~
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: Quattrowireless - monetizing your app

2009-08-29 Thread Maps.Huge.Info (Maps API Guru)

Got the same e-mail, sort of spammy.

I use the example app they posted, Weatherbug which is a nice app.
The ads displayed on it are of reasonable size and unobtrusive, so
perhaps they are an ok source of ad revenue. Don't know how they pay
or what kind of company they are though.

-John Coryat
--~--~-~--~~~---~--~~
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] InvokeZoomPicker

2009-08-29 Thread Maps.Huge.Info (Maps API Guru)

How can a webview be created with the ZoomPicker enabled and the
webpage zoomed out?

I have the following code that doesn't work:

WebView mywebview = getWebView() ;
mywebview.setWebViewClient(getWebViewClient());
mywebview.getSettings().setJavaScriptEnabled(true);
mywebview.getSettings().setLoadsImagesAutomatically(true);
mywebview.getSettings().setSupportZoom(true) ;
mywebview.getSettings().setBuiltInZoomControls(true) ;
mywebview.getSettings().setUseWideViewPort(true) ;
mywebview.loadUrl(http://www.usnaviguide.com/v3maps/test.htm;);
mywebview.invokeZoomPicker() ;

It does allow the ZoomPicker if the page is moved around.

What am I doing wrong?

Thanks in advance.

-John Coryat
--~--~-~--~~~---~--~~
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: OMG, this 325 character limit !

2009-08-28 Thread Maps.Huge.Info (Maps API Guru)

I suggest shortening the description and including a link to your
site. That would make more sense.

-John Coryat
--~--~-~--~~~---~--~~
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: ADC 2 Submission Site -- Now live

2009-08-25 Thread Maps.Huge.Info (Maps API Guru)

I see no need to extend the deadline, it's been public since May 27th,
if you're not ready by now, you'll probably never be ready. People
have to learn that a deadline means something, extending it would only
punish those who are ready and reward those who can't meet project
goals on time.

-John Coryat
--~--~-~--~~~---~--~~
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: About ADC.

2009-08-24 Thread Maps.Huge.Info (Maps API Guru)

I didn't read anything about size restrictions but the rules do say
something about updates after submission. The easiest and surest way
to find this out is to read the rules. They are quite clear and to the
point. Search Google for ADC2 to find them.

-John Coryat
--~--~-~--~~~---~--~~
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: adc2 submission site

2009-08-24 Thread Maps.Huge.Info (Maps API Guru)

There is nothing in the rules to prevent you from releasing your app
to the market after August 1st, so what's the big deal? I would
suggest that anyone who plans on submitting an app to ADC2 submit it
first to the market for debugging and to catch unforeseen problems.

-John Coryat

On Aug 24, 1:11 am, Khurram Samad khurram.sa...@gmail.com wrote:
 I was so upset with the delay that i finally gave up and released the
 application at Android Store :)

 Check out Gang War Lite

 On Aug 19, 5:44 pm, mscwd01 mscw...@gmail.com wrote:

  I'd like it postponed a month please ;)

  It would be good to know either way though...

  On Aug 17, 7:43 pm, cindy ypu01...@yahoo.com wrote:

   I have question too. Google should update theADCofficial site to
   tell us what happends.

   On Aug 16, 11:11 am, siuying siu.y...@gmail.com wrote:

Glad to hear that I'm not the only one having this question!

On 8月15日, 下午12時36分, sleith raysle...@gmail.com wrote:

 Hi, i've just purchased to be an android developer
 when i visithttp://market.android.com/publish, i don't see anything
 about publish foradc2
 how to submit app foradc2 ?
 thank you- Hide quoted text -

  - Show quoted text -
--~--~-~--~~~---~--~~
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: get area name using latitude and longitude

2009-08-23 Thread Maps.Huge.Info (Maps API Guru)

Not sure what you mean by area name but the process you're referring
to is called reverse geocoding.

-John Coryat
--~--~-~--~~~---~--~~
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: Find long/lat distance X from current location

2009-08-22 Thread Maps.Huge.Info (Maps API Guru)

This example using a Google map may be useful: (JavaScript)

http://maps.huge.info/dragcircle2.htm

-John Coryat
--~--~-~--~~~---~--~~
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: Check for internet connection

2009-08-21 Thread Guru
/**
 * Checks whether the device is able to connect to the network
 * @param context
 * @return
 */
public static boolean isNetworkAvailable(Context context) {

ConnectivityManager connectivity = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
if (connectivity == null) {
Log.w(tag, couldn't get connectivity manager);

} else {
NetworkInfo[] info = connectivity.getAllNetworkInfo();

if (info != null) {

for (int i = 0; i  info.length; i++) {

if (info[i].getState() == NetworkInfo.State.CONNECTED) {

return true;

}

}

}
}
return false;
}

On Fri, Aug 21, 2009 at 3:54 AM, cafffiene cafffi...@gmail.com wrote:


 What is the simplest way to check whether my app can access the
 internet?  I am using some APIs that use the internet, but they crash
 if there is no connectivity.  So I just want to check if there is
 internet access by any means.  thanks
 



-- 
Thanks and Regards
Gurudutt P.S.

--~--~-~--~~~---~--~~
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: adc2 submission site

2009-08-19 Thread Maps.Huge.Info (Maps API Guru)

As long as the site opens before the end of the month, what difference
does it make?

-John Coryat
--~--~-~--~~~---~--~~
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: Google Dev Phone unavavailable! will they extend ADC II deadline..who to ask?!

2009-08-16 Thread Maps.Huge.Info (Maps API Guru)

You don't need a rooted phone to test an app.

-John Coryat
--~--~-~--~~~---~--~~
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: Google Dev Phone unavavailable! will they extend ADC II deadline..who to ask?!

2009-08-15 Thread Maps.Huge.Info (Maps API Guru)

You can always purchase an IO phone (Ion) from eBay, probably for less
than the $400 for a dev G1.

-John Coryat
--~--~-~--~~~---~--~~
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: UnknownHostException

2009-08-11 Thread Guru
Could any please confirm that this is a bug in the SDK.Due to this we face a
lot of issues in our app.

http://code.google.com/p/android/issues/detail?id=2764




On Thu, Jul 23, 2009 at 9:10 AM, Guru gurudut...@gmail.com wrote:

 I saw this thread(since it is a dead thread--starting a new one):


 http://groups.google.com/group/android-developers/browse_thread/thread/cd5be36a07ad1a3d/ba559f2e2ff06e32#ba559f2e2ff06e32

 I have also encountered such problems in the emulator.

 What I was interested in knowing is that ,is this an emulator problem or a
 problem in the SDK. Many of our users complain of errors while they are
 using the app.Actually the users get Unknownhost exception.And this
 exception does not appear when the users re-start their device.Can some one
 shed some light on this.

 Thanks
 Guru




-- 
Thanks and Regards
Gurudutt P.S.

--~--~-~--~~~---~--~~
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: accurasy in cell id and LAC approach

2009-08-09 Thread Maps.Huge.Info (Maps API Guru)

I've seen it as low as 75m and as high as 2400m, I'm sure it
fluctuates quite a bit.

-John Coryat
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



<    1   2   3   4   5   6   7   >