Re: [android-developers] Re: Users not upgrading

2012-05-22 Thread Ben Sandee
On Tue, May 22, 2012 at 11:06 AM, FiltrSoft  wrote:
> Yea, I think I was a little overzealous with my upgrades (hence the 40
> versions), because I would find a bug and want it fixed as soon as
> possible.  Also, and this might not be the best way to think about it, I
> tend to use the Play Store as a "beta" test, in that I will upload more
> version to the Play Store because there is no approval process, then when I
> feel it's stable, send it to Amazon's App Store.  It's hard to balance
> wanting to fix issues/annoying the users.

I'm not sure if you've already considered this, but it could be that
they are not eligible to upgrade. Make sure that you haven't
accidentally enabled a feature or requirement in your manifest that
would strand a large number of users at version 10 because of SDK
version or other feature requirements.

Ben Sandee
tbsan...@orangebikelabs.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


Re: [android-developers] Help with Lint Warning

2011-12-18 Thread Ben Sandee
On Sat, Dec 17, 2011 at 8:45 PM, Zsolt Vasvari  wrote:
> I have the following layout:
>
>  minHeight="?android:attr/listPreferredItemHeight">
>    layout_height="wrap_content" layout_gravity="center_vertical"
> orientation="vertical">
>       layout_height="wrap_content"/>
>       layout_height="wrap_content"/>
>   
> 
>
> The idea here is that the 2 TextViews (which each could have different
> heights), are centered vertically within the possibly taller frame,
> just as you would expect in a ListView.
>
> I am getting the following Lint warning: "This LinearLayout layout or
> its FrameLayout parent is useless."
>

I've got several similar layouts but the warning says (emphasis mine)
"This LinearLayout or its FrameLayout parent *may* be useless."  I
found that all of the cases in my app where the warnings said that it
"is useless" were legitimate. Many of those "may be useless" cases
were situations where I used layout_gravity="center", like you. I
suppose there may be a more optimal layout, but in my case it isn't
worth the effort to find it.

Ben

Ben

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
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