dmmarck
Retired Moderator
- Dec 28, 2011
- 8,348
- 2,594
- 0
Please do.![]()
Personally I don't know why all apps aren't tablet optimized. I'm a novice developer with apps out on Google Play (a ton of themes and a couple functioning applications), and today I spent two hours figuring out how to optimize an app for tablets and I succeeded. If I can do it (and I'm not even majoring in programming) Facebook and the rest should be able to do it.
It's so incredibly easy that (for example): I am developing a forum app for a website. Because I don't know how to read data from the server, I'm just using a mobile webview to display the forum (I have been working with the website owner to get a good mobile theme). The app has some functions outside the web view but that's irrelevant. The app weighs in at 0.7 MB and with barely any work for me I was able to get the holo look on even non-ICS devices... it was very easy. Furthermore, by simply adding a modified XML to a layout-xlarge-land, I can get the app to display a completely different layout to tablets in landscape. After I figured out what to do (also involved tweaking some code) it works perfect....
The point of all this is that optimizing for tablets is not hard at all. If I can do it, real devs can.![]()
Come on. I know you're better than that.
You can't honestly say that when it comes to tablet-optimized app versions, Android isn't behind iPad.
The average consumers know the names. Facebook. Twitter. eBay. TripAdvisor. etc.
Older, still relevant: Why Android Tablet Apps Suck and the iPad Wins: An Illustrated Guide - CBS News for Android Tablets - Slideshow from PCMag.com
I want Android tablets to succeed. And to help with that, (third-party) app developers really need to make better versions of their Android tablet apps.
As someone who is planning to buy a Nexus 7 (or 10 depending on what Google presents in their upcoming event), I am wondering if when I get the tablet I wil end up using smartphone apps scaled to fit my tablet for the most part as opposed to apps that are made and optimized for tablets.
I keep hearing this complain about how Android lacks when it comes to tablet optimized apps and how iOS has the clear advantage here. So, how are things really? Is there a serious lack of tablet ready apps or do most of the common apps already have a tablet version?
What has been your experience as Android tablet user?
The solution to this is actually very simple.
For all of those apps that you have that are not "tablet optimized" to your liking, it is probably because of developer laziness. For those apps, go rate them, remove one star and explain why in the ratings comments. Explain that you will re-add the star when the app gets tablet optimized. Ratings matter to developers.
From my experience playing around with the ipad. The apps that aren't for tablet are stretched and look horrible. While the tablet specific ones are well done they also cost more. With my nexus 7 all my apps don't look stretched and they're not tablet specific or more expensive
Sent from my Nexus 7 using Android Central Forums
As someone who is planning to buy a Nexus 7 (or 10 depending on what Google presents in their upcoming event), I am wondering if when I get the tablet I wil end up using smartphone apps scaled to fit my tablet for the most part as opposed to apps that are made and optimized for tablets.
I keep hearing this complain about how Android lacks when it comes to tablet optimized apps and how iOS has the clear advantage here. So, how are things really? Is there a serious lack of tablet ready apps or do most of the common apps already have a tablet version?
What has been your experience as Android tablet user?
The solution to this is actually very simple.
For all of those apps that you have that are not "tablet optimized" to your liking, it is probably because of developer laziness. For those apps, go rate them, remove one star and explain why in the ratings comments. Explain that you will re-add the star when the app gets tablet optimized. Ratings matter to developers.
Google recently released more guidelines for developers so they can optimize apps for the tablet form. We just need developers to take advantage of those guidelines. Someone earlier said to downrate the apps and state why on Google Play. Seems like a good idea as well as simply contacting the developer and questioning why they don't have an tablet version. If they get enough messages, that may wake them up into optimizing their app.
I've been playing with 7-inch scaling and its more difficult than a 10 inch tablet because android doesn't have a clear identifier in the code to say if its a 7 inch tablet. For instance a ten inch tablet will return true on when you have code asking if its xlarge, but seven inch tablets fall into the large category with phones so if you just set a different layout for large screens, there's no clear way to distinguish between a galaxy note (5in) and a Nexus 7 because they both have the same pixels and screen size. And no don't expect developers to read device names off the build.prop, that's a bad idea. I know I said the other day that coding for tablets was easy, and it is for 10 inch tabs, but its a little more difficult with the n7 because its almost phone sized and the OS (AFAIK) doesn't have a way to distinguish between a simple way to read if its a tablet or a huge phone, other than reading specific device models.
I've been playing with 7-inch scaling and its more difficult than a 10 inch tablet because android doesn't have a clear identifier in the code to say if its a 7 inch tablet. For instance a ten inch tablet will return true on when you have code asking if its xlarge, but seven inch tablets fall into the large category with phones so if you just set a different layout for large screens, there's no clear way to distinguish between a galaxy note (5in) and a Nexus 7 because they both have the same pixels and screen size. And no don't expect developers to read device names off the build.prop, that's a bad idea.