HomeSort by relevance Sort by last modified time
    Searched full:smallestwidth (Results 1 - 8 of 8) sorted by null

  /frameworks/base/docs/html/guide/topics/manifest/
supports-screens-element.jd 132 <dd>Specifies the minimum smallestWidth required. The smallestWidth is the shortest dimension of
135 compatible with your application, the device's smallestWidth must be equal to or greater than this
139 <p>For example, a typical handset screen has a smallestWidth of 320dp, a 7" tablet has a
140 smallestWidth of 600dp, and a 10" tablet has a smallestWidth of 720dp. These values are generally
141 the smallestWidth because they are the shortest dimension of the screen's available space.</p>
145 the device's smallestWidth as one that is smaller than the actual screen size, accounting for these
activity-element.jd 274 smallestWidth configuration</a>. However, if your application targets API level 12 or lower, then
    [all...]
  /frameworks/base/docs/html/about/versions/
android-3.2.jd 105 characteristics: <em>smallestWidth</em>, <em>width</em>, and
109 <li>A screen's <em>smallestWidth</em> is its fundamental minimum size,
112 smallestWidth is normally based on its width, while in landscape orientation it is based
113 on its height. In all cases, the smallestWidth is derived from a fixed characteristic of the
114 screen and the value does not change, regardless of orientation. The smallestWidth
129 according to the smallestWidth of the current screen. You can also manage the
135 minimum smallestWidth, width, or height, and</li>
143 <p>Since the new API lets you target screens more directly through smallestWidth,
156 <th>smallestWidth (dp)</th>
194 configurations designed for a specific minimum smallestWidth, current width, o
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
CameraSource.java 280 int smallestWidth = previewSizes.get(0).width;
294 if ( size.width < smallestWidth &&
296 smallestWidth = size.width;
302 closestWidth = smallestWidth;
  /frameworks/base/docs/html/guide/topics/resources/
providing-resources.jd 360 <td>smallestWidth</td>
370 screen area. Specifically, the device's smallestWidth is the shortest of the screen's available
378 height or width. The smallestWidth is a fixed screen size characteristic of the device; <strong>the
379 device's smallestWidth does not change when the screen's orientation changes</strong>.</p>
380 <p>The smallestWidth of a device takes into account screen decorations and system UI. For
382 the axis of the smallestWidth, the system declares the smallestWidth to be smaller than the actual
400 the smallestWidth qualifier, the system uses the one closest to (without exceeding) the
401 device's smallestWidth. </p>
405 android:requiresSmallestWidthDp}</a> attribute, which declares the minimum smallestWidth with whic
    [all...]
  /frameworks/base/docs/html/guide/practices/
screens_support.jd     [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
CameraStreamer.java     [all...]
  /packages/apps/Nfc/src/com/android/nfc/
SendUi.java 641 float smallestWidth = (float)Math.min(newWidth, newHeight);
642 float smallestWidthDp = smallestWidth / (mDisplayMetrics.densityDpi / 160f);
    [all...]

Completed in 4371 milliseconds