/frameworks/base/docs/html/guide/topics/manifest/ |
D | compatible-screens-element.jd | 11 …<<a href="#screen">screen</a> android:<a href="#screenSize">screenSize</a>=["small" | "normal" … 73 android:screenSize} and {@code android:screenDensity} attributes (if you do not declare both 78 <dt id="screenSize"><code>android:screenSize</code></dt> 126 <screen android:screenSize="small" android:screenDensity="ldpi" /> 127 <screen android:screenSize="small" android:screenDensity="mdpi" /> 128 <screen android:screenSize="small" android:screenDensity="hdpi" /> 129 <screen android:screenSize="small" android:screenDensity="xhdpi" /> 130 <screen android:screenSize="small" android:screenDensity="xxhdpi" /> 131 <screen android:screenSize="small" android:screenDensity="xxxhdpi" /> 133 <screen android:screenSize="normal" android:screenDensity="ldpi" /> [all …]
|
/frameworks/base/docs/html/guide/practices/ |
D | screens-distribution.jd | 67 compatible, using both the {@code android:screenSize} and {@code android:screenDensity} attributes. 83 <screen android:screenSize="small" android:screenDensity="ldpi" /> 84 <screen android:screenSize="small" android:screenDensity="mdpi" /> 85 <screen android:screenSize="small" android:screenDensity="hdpi" /> 86 <screen android:screenSize="small" android:screenDensity="xhdpi" /> 88 <screen android:screenSize="normal" android:screenDensity="ldpi" /> 89 <screen android:screenSize="normal" android:screenDensity="mdpi" /> 90 <screen android:screenSize="normal" android:screenDensity="hdpi" /> 91 <screen android:screenSize="normal" android:screenDensity="xhdpi" />
|
D | optimizing-for-3.0.jd | 549 the {@code android:screenSize} and {@code android:screenDensity} attributes. Each {@code 566 <screen android:screenSize="small" android:screenDensity="ldpi" /> 567 <screen android:screenSize="small" android:screenDensity="mdpi" /> 568 <screen android:screenSize="small" android:screenDensity="hdpi" /> 569 <screen android:screenSize="small" android:screenDensity="xhdpi" /> 571 <screen android:screenSize="normal" android:screenDensity="ldpi" /> 572 <screen android:screenSize="normal" android:screenDensity="mdpi" /> 573 <screen android:screenSize="normal" android:screenDensity="hdpi" /> 574 <screen android:screenSize="normal" android:screenDensity="xhdpi" />
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | RenderAction.java | 328 ScreenSize screenSize = hardwareConfig.getScreenSize(); in getConfiguration() local 329 if (screenSize != null) { in getConfiguration() 330 switch (screenSize) { in getConfiguration()
|
/frameworks/base/native/android/ |
D | configuration.cpp | 189 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize) { in AConfiguration_setScreenSize() argument 191 | (screenSize&ResTable_config::MASK_SCREENSIZE); in AConfiguration_setScreenSize()
|
/frameworks/base/docs/html-intl/intl/ko/guide/topics/resources/ |
D | runtime-changes.jd | 224 "orientation"} 값 외에 {@code "screenSize"} 값도 포함시켜야 합니다. 다시 말해, {@code 225 android:configChanges="orientation|screenSize"}를 선언해야 합니다. 하지만, 애플리케이션이 API 레벨 12 이하를
|
/frameworks/base/docs/html-intl/intl/ru/guide/topics/resources/ |
D | runtime-changes.jd | 223 ), необходимо включить значение {@code "screenSize"} в дополнение к значению {@code 225 android:configChanges="orientation|screenSize"}. Однако, если приложение нацелено на уровень API
|
/frameworks/base/docs/html-intl/intl/ja/guide/topics/resources/ |
D | runtime-changes.jd | 221 …get">{@code targetSdkVersion}</a> 属性により宣言)、画面の向きによる実行時の再起動を回避するには、{@code "screenSize"} 値と一緒に {@code 225 android:configChanges="orientation|screenSize"} を宣言する必要があります。ただし、アプリケーションのターゲットが API レベル 12 以前の場合は、…
|
/frameworks/base/docs/html-intl/intl/zh-tw/guide/topics/resources/ |
D | runtime-changes.jd | 222 "orientation"} 值之外,您還必須包含 {@code "screenSize"} 值。 225 android:configChanges="orientation|screenSize"}。不過,如果您的應用程式是針對 API 級別 12 或更低級別,則您的 Activity 一律要自行處理…
|
/frameworks/base/docs/html-intl/intl/zh-cn/guide/topics/resources/ |
D | runtime-changes.jd | 224 "orientation"} 值以外,您还必须添加 {@code "screenSize"} 值。即,您必须声明 {@code 225 android:configChanges="orientation|screenSize"}。但是,如果您的应用是面向 API 级别
|
/frameworks/native/include/android/ |
D | configuration.h | 589 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
|
/frameworks/base/docs/html-intl/intl/zh-tw/training/tv/playback/ |
D | picture-in-picture.jd | 86 "screenSize|smallestScreenSize|screenLayout|orientation"
|
/frameworks/base/docs/html-intl/intl/ru/training/tv/playback/ |
D | picture-in-picture.jd | 86 "screenSize|smallestScreenSize|screenLayout|orientation"
|
/frameworks/base/docs/html-intl/intl/ja/training/tv/playback/ |
D | picture-in-picture.jd | 88 "screenSize|smallestScreenSize|screenLayout|orientation"
|
/frameworks/base/docs/html-intl/intl/ko/training/tv/playback/ |
D | picture-in-picture.jd | 88 "screenSize|smallestScreenSize|screenLayout|orientation"
|
/frameworks/base/docs/html-intl/intl/zh-cn/training/tv/playback/ |
D | picture-in-picture.jd | 88 "screenSize|smallestScreenSize|screenLayout|orientation"
|
/frameworks/base/libs/androidfw/ |
D | ResourceTypes.cpp | 1896 diff = (int32_t)(screenSize - o.screenSize); in compare() 1984 if (screenSize != o.screenSize) diffs |= CONFIG_SCREEN_SIZE; in diff() 2147 if (screenSize || o.screenSize) { in isMoreSpecificThan() 2468 if (screenSize || o.screenSize) { in isBetterThan() 2572 const int screenSize = screenLayout&MASK_SCREENSIZE; in match() local 2576 if (screenSize != 0 && screenSize > setScreenSize) { in match() 2666 if (screenSize != 0) { in match() 3098 if (screenSize != 0) { in toString()
|
/frameworks/base/docs/html-intl/intl/id/guide/topics/resources/ |
D | runtime-changes.jd | 223 ), Anda harus menyertakan nilai {@code "screenSize"} selain nilai {@code 225 android:configChanges="orientation|screenSize"}. Akan tetapi, jika aplikasi Anda menargetkan API le…
|
/frameworks/base/docs/html-intl/intl/in/guide/topics/resources/ |
D | runtime-changes.jd | 223 ), Anda harus menyertakan nilai {@code "screenSize"} selain nilai {@code 225 android:configChanges="orientation|screenSize"}. Akan tetapi, jika aplikasi Anda menargetkan API le…
|
/frameworks/base/docs/html-intl/intl/pt-br/guide/topics/resources/ |
D | runtime-changes.jd | 223 é preciso incluir o valor {@code "screenSize"} além do valor {@code 225 android:configChanges="orientation|screenSize"}. No entanto, se o aplicativo tem como alvo uma API …
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | runtime-changes.jd | 232 attributes), you must include the {@code "screenSize"} value in addition to the {@code 234 android:configChanges="orientation|screenSize"}. However, if your application targets API level
|
/frameworks/base/docs/html-intl/intl/id/training/tv/playback/ |
D | picture-in-picture.jd | 88 "screenSize|smallestScreenSize|screenLayout|orientation"
|
/frameworks/base/docs/html-intl/intl/in/training/tv/playback/ |
D | picture-in-picture.jd | 88 "screenSize|smallestScreenSize|screenLayout|orientation"
|
/frameworks/base/tools/aapt/ |
D | Command.cpp | 353 int32_t screenSize = AaptXml::getIntegerAttribute(tree, in printCompatibleScreens() local 357 if (screenSize > 0 && screenDensity > 0) { in printCompatibleScreens() 362 printf("'%d/%d'", screenSize, screenDensity); in printCompatibleScreens()
|
/frameworks/base/docs/html/training/tv/playback/ |
D | picture-in-picture.jd | 91 "screenSize|smallestScreenSize|screenLayout|orientation"
|