Home | History | Annotate | Download | only in practices

Lines Matching full:screens

1 page.title=Distributing to Specific Screens
3 parent.title=Supporting Multiple Screens
21 <li><a href="#MultiApks">Publishing Multiple APKs for Different Screens</a></li>
27 href="{@docRoot}guide/practices/screens_support.html">Supporting Multiple Screens</a></li>
39 application to certain types of screens, such as only tablets and other large devices or only
46 href="{@docRoot}guide/practices/screens_support.html">supporting multiple screens</a> and implement
47 them to the best of your ability. By supporting multiple screens, your application can be made
54 <p>Because the system generally scales applications to fit larger screens well, you shouldn't
55 need to filter your application from larger screens. As long as you follow the <a
57 Independence</a>, your application should work well on larger screens such as tablets. However, you
60 href="{@docRoot}guide/topics/manifest/compatible-screens-element.html">{@code
61 &lt;compatible-screens>}</a> element to manage the distribution of your application based on
66 <p>The <a href="{@docRoot}guide/topics/manifest/compatible-screens-element.html">{@code
67 &lt;compatible-screens>}</a> element must contain one or more {@code &lt;screen&gt;} elements. Each
74 <p>For example, if your application is compatible with only small and normal size screens,
83 &lt;compatible-screens>
84 &lt;!-- all small size screens -->
89 &lt;!-- all normal size screens -->
94 &lt;/compatible-screens>
103 href="{@docRoot}guide/topics/manifest/compatible-screens-element.html">{@code
104 &lt;compatible-screens>}</a> element for the reverse scenario (when your application is not
105 compatible with smaller screens), it's easier if you instead use the <a
106 href="{@docRoot}guide/topics/manifest/supports-screens-element.html">{@code
107 &lt;supports-screens>}</a> as discussed in the next section, because it doesn't require you
116 large screen) or you need time to optimize it for smaller screens, you can prevent small-screen
118 href="{@docRoot}guide/topics/manifest/supports-screens-element.html">{@code
119 &lt;supports-screens>}</a> manifest element.</p>
126 &lt;supports-screens android:smallScreens="false"
149 href="{@docRoot}guide/topics/manifest/supports-screens-element.html#requiresSmallest">{@code
156 screen sizes; for example, if your design works well only on screens that are 9" or larger, you
174 href="{@docRoot}guide/topics/manifest/supports-screens-element.html">{@code
175 &lt;supports-screens>}</a> element for the reverse scenario (when your application is not compatible
176 with <em>larger</em> screens) and set the larger screen size attributes to {@code "false"}, then
178 will still be available to larger screens, but when it runs, it will not resize to fit the screen.
182 to prevent your application from being downloaded on larger screens, use <a
183 href="{@docRoot}guide/topics/manifest/compatible-screens-element.html">{@code
184 &lt;compatible-screens>}</a>, as discussed in the previous section about <a
189 href="{@docRoot}guide/practices/screens_support.html">supporting multiple screens</a>. You should
190 use <a href="{@docRoot}guide/topics/manifest/compatible-screens-element.html">{@code
191 &lt;compatible-screens>}</a> or <a
192 href="{@docRoot}guide/topics/manifest/supports-screens-element.html">{@code
193 &lt;supports-screens>}</a> only when you cannot provide compatibility on all screen configurations
199 <h2 id="MultiApks">Publishing Multiple APKs for Different Screens</h2>
214 <a href="{@docRoot}guide/practices/screens_support.html">Supporting Multiple Screens</a>.</p>