Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Try setting targetSdkVersion to 9 (or 10) <strong>and</strong> adding <code>&lt;supports-screens android:xlargeScreens="false" /&gt;</code> to your AndroidManifest.xml (docs for <a href="http://developer.android.com/guide/topics/manifest/supports-screens-element.html#xlarge" rel="nofollow">supports-screens</a>). This tells the system that your application does not explicitly support xlarge screens and that it should offer the compatibility zoom/scale option for users that use the app on xlarge devices. Note that this will <strong>not</strong> cause the app to be hidden from xlarge devices on the Play Store (<code>supports-screens</code> only causes Play Store to filter apps from smaller screens if they are designed to run on larger screens, not the other way around).</p> <p>The reason I think this is happening once you set targetSdkVersion to 9+ is because supports-screens xlargeScreens was added in API Level 9 and (I believe) defaults to true (for API Level 9+ at least). Once xlargeScreens is true the system will disable the compatibility zoom/scale mode.</p> <p>Supporting docs (where it does say this but is fairly convoluted):</p> <ul> <li><a href="http://developer.android.com/guide/practices/screen-compat-mode.html" rel="nofollow">http://developer.android.com/guide/practices/screen-compat-mode.html</a></li> <li><a href="http://android-developers.blogspot.com/2011/07/new-mode-for-apps-on-large-screens.html" rel="nofollow">http://android-developers.blogspot.com/2011/07/new-mode-for-apps-on-large-screens.html</a></li> <li><a href="http://developer.android.com/guide/topics/manifest/supports-screens-element.html" rel="nofollow">http://developer.android.com/guide/topics/manifest/supports-screens-element.html</a></li> </ul>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload