synachu85 / solitaire-for-android

Automatically exported from code.google.com/p/solitaire-for-android
0 stars 0 forks source link

Can't get full screen for freecell on Xoom tablet #92

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?
Small playing field size of phone screen on 10.5" Xoom tablet. Can't enlarge 
freecell playing area.

What version of the product are you using? On what operating system?

MOTOROLA XOOM TABLET
Please provide any additional information below.

Question, there isn't a different app to download for android tablets is there?

Original issue reported on code.google.com by bcoha...@gmail.com on 20 Jun 2011 at 8:32

GoogleCodeExporter commented 8 years ago
I have searched numerous solitare/freecell apps and this is by far the best - 
but I had only downloaded it to an android phone (HTC Desire). On the tablet, 
the playing field is size of phone unfortunately, and won't expand.

Original comment by bcoha...@gmail.com on 20 Jun 2011 at 8:48

GoogleCodeExporter commented 8 years ago
What you're seeing is the dreaded screen compatibility mode. The dev needs to 
add the following line to the Android Manifest after the end of the application 
section:

<supports-screens     
        android:largeScreens="true"
        android:xlargeScreens="true"/>

He might also have to create higher resolution resources, but I think the 
default will cause android to scale the current resources up to size...it will 
be ugly but functional.

See 
http://developer.android.com/guide/topics/manifest/supports-screens-element.html
 for more information on supporting large screens. 

Original comment by CMSpoo...@gmail.com on 19 Aug 2011 at 5:59