/frameworks/base/core/java/android/content/res/ |
D | Configuration.java | 295 public int touchscreen; field in Configuration 630 touchscreen = o.touchscreen; in setTo() 738 switch (touchscreen) { in toString() 743 default: sb.append(" touch="); sb.append(touchscreen); break; in toString() 795 touchscreen = TOUCHSCREEN_UNDEFINED; in setToDefaults() 860 if (delta.touchscreen != TOUCHSCREEN_UNDEFINED in updateFrom() 861 && touchscreen != delta.touchscreen) { in updateFrom() 863 touchscreen = delta.touchscreen; in updateFrom() 1007 if (delta.touchscreen != TOUCHSCREEN_UNDEFINED in diff() 1008 && touchscreen != delta.touchscreen) { in diff() [all …]
|
D | AssetManager.java | 686 int orientation, int touchscreen, int density, int keyboard, in setConfiguration() argument
|
/frameworks/base/core/jni/ |
D | android_content_res_Configuration.cpp | 33 jfieldID touchscreen; member 51 out->touchscreen = env->GetIntField(clazz, gConfigurationClassInfo.touchscreen); in android_Configuration_getFromJava() 94 GET_FIELD_ID(gConfigurationClassInfo.touchscreen, clazz, in register_android_content_res_Configuration()
|
/frameworks/base/native/android/ |
D | configuration.cpp | 67 return config->touchscreen; in AConfiguration_getTouchscreen() 155 void AConfiguration_setTouchscreen(AConfiguration* config, int32_t touchscreen) { in AConfiguration_setTouchscreen() argument 156 config->touchscreen = touchscreen; in AConfiguration_setTouchscreen()
|
/frameworks/base/docs/html-intl/intl/ja/training/tv/start/ |
D | hardware.jd | 70 <td>{@code android.hardware.touchscreen}</td> 106 <uses-feature android:name="android.hardware.touchscreen" 121 …なお、TV 端末向けのすべてのアプリは、<a href="{@docRoot}training/tv/start/start.html#no-touchscreen">TV アプリのビルドを開始す… 185 // Check if android.hardware.touchscreen feature is available. 186 if (getPackageManager().hasSystemFeature("android.hardware.touchscreen")) { 192 <h4 id="no-touchscreen">タッチスクリーン</h4>
|
D | start.jd | 115 <h3 id="no-touchscreen">タッチスクリーンの不要を宣言する</h3> 118 …TV 端末向けアプリでは、入力はタッチスクリーンに依存しません 。これを明確にするために、TV アプリのマニフェストで {@code android.hardware.touchscreen} 機… 123 <strong><uses-feature android:name="android.hardware.touchscreen"
|
/frameworks/base/docs/html/guide/topics/manifest/ |
D | uses-configuration-element.jd | 40 your app absolutely cannot function without a touchscreen, then instead use the <a href= 42 declare the required touchscreen type, ranging from {@code "android.hardware.faketouch"} for basic 44 "android.hardware.touchscreen.multitouch.jazzhand"} for distinct input from multiple fingers.</p> 163 <uses-feature>}</a> tag to declare the required touchscreen
|
D | uses-feature-element.jd | 516 uses-feature:'android.hardware.touchscreen' 772 only if it offers an emulated touchscreen ("fake touch" interface), or better. A device that offers 773 a fake touch interface provides a user input system that emulates a subset of touchscreen 780 android.hardware.touchscreen} feature by default, if you want your application to be available to 783 android:name="android.hardware.touchscreen" <strong>android:required="false"</strong> 795 android.hardware.touchscreen.multitouch.distinct}, input devices that support distinct multi-touch 812 android.hardware.touchscreen.multitouch.jazzhand}, input devices that support jazzhand multi-touch 822 <td><code>android.hardware.touchscreen</code></td> 823 <td>The application uses touchscreen capabilities for gestures that are more interactive 829 required, by declaring {@code android.hardware.touchscreen} with {@code android:required="false"}. [all …]
|
/frameworks/base/docs/html/training/tv/start/ |
D | hardware.jd | 88 <td>{@code android.hardware.touchscreen}</td> 146 If your app uses hardware features (such as a touchscreen or camera) that are not available on 154 <uses-feature android:name="android.hardware.touchscreen" 181 as described in <a href="{@docRoot}training/tv/start/start.html#no-touchscreen">Get Started with 270 // Check if android.hardware.touchscreen feature is available. 271 if (getPackageManager().hasSystemFeature("android.hardware.touchscreen")) { 277 <h4 id="no-touchscreen">Touch screen</h4> 283 require or imply the use of a touchscreen.
|
D | start.jd | 164 <h3 id="no-touchscreen">Declare touchscreen not required</h3> 169 android.hardware.touchscreen} feature is not required. This setting identifies your app as being 176 <uses-feature android:name="android.hardware.touchscreen"
|
/frameworks/base/tools/aapt/ |
D | AaptConfig.cpp | 559 if (out) out->touchscreen = out->TOUCHSCREEN_ANY; in parseTouchscreen() 562 if (out) out->touchscreen = out->TOUCHSCREEN_NOTOUCH; in parseTouchscreen() 565 if (out) out->touchscreen = out->TOUCHSCREEN_STYLUS; in parseTouchscreen() 568 if (out) out->touchscreen = out->TOUCHSCREEN_FINGER; in parseTouchscreen()
|
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
D | ActivityManagerTest.java | 103 assertEquals(config.reqTouchScreen, vconfig.touchscreen); in testGetDeviceConfigurationInfo()
|
/frameworks/native/include/android/ |
D | configuration.h | 208 void AConfiguration_setTouchscreen(AConfiguration* config, int32_t touchscreen);
|
/frameworks/base/libs/androidfw/ |
D | ResourceTypes.cpp | 1873 if (touchscreen != o.touchscreen) { in compareLogical() 1874 return touchscreen < o.touchscreen ? -1 : 1; in compareLogical() 1897 if (touchscreen != o.touchscreen) diffs |= CONFIG_TOUCHSCREEN; in diff() 2030 if (touchscreen != o.touchscreen) { in isMoreSpecificThan() 2031 if (!touchscreen) return false; in isMoreSpecificThan() 2032 if (!o.touchscreen) return true; in isMoreSpecificThan() 2261 if ((touchscreen != o.touchscreen) && requested->touchscreen) { in isBetterThan() 2262 return (touchscreen); in isBetterThan() 2424 if (touchscreen != 0 && touchscreen != settings.touchscreen) { in match() 2733 if (touchscreen != TOUCHSCREEN_ANY) { in toString() [all …]
|
/frameworks/base/docs/html/guide/topics/ui/accessibility/ |
D | index.jd | 46 that prevent them from fully seeing or using a touchscreen, and users with hearing loss who may not
|
/frameworks/base/docs/html/training/tv/publishing/ |
D | checklist.jd | 130 <p>See <a href="{@docRoot}training/tv/start/hardware.html#no-touchscreen">Touch screen</a> and 131 <a href="{@docRoot}training/tv/start/start.html#no-touchscreen">Declare touch screen not
|
/frameworks/base/docs/html/training/multiple-apks/ |
D | texture.jd | 281 uses-feature:'android.hardware.touchscreen' 299 …roid.hardware.touchscreen</code> requirement is also implicitly added. If you want your APK to be … 301 <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
|
D | api.jd | 362 uses-feature:'android.hardware.touchscreen' 380 …roid.hardware.touchscreen</code> requirement is also implicitly added. If you want your APK to be … 382 <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
|
D | screensize.jd | 336 uses-feature:'android.hardware.touchscreen' 355 …roid.hardware.touchscreen</code> requirement is also implicitly added. If you want your APK to be … 357 <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
|
D | multiple.jd | 458 uses-feature:'android.hardware.touchscreen' 476 …roid.hardware.touchscreen</code> requirement is also implicitly added. If you want your APK to be … 478 <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
|
/frameworks/base/docs/html/design/style/ |
D | metrics-grids.jd | 61 comfortably in the range of recommended target sizes (7-10 mm) for touchscreen objects and users
|
/frameworks/base/core/java/android/app/ |
D | ResourcesManager.java | 114 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH; in applyNonDefaultDisplayMetricsToConfigurationLocked()
|
/frameworks/base/docs/html/about/versions/ |
D | android-3.0.jd | 861 emulated touchscreen (or better). A device that offers an emulated touchscreen provides a user input 862 system that can emulate a subset of touchscreen 868 <em>not</em> want your application filtered from devices with an emulated touchscreen, you 873 including those that provide only an emulated touchscreen input.</p> 874 <p>All devices that include a touchscreen also support {@link 876 touchscreen capabilities are a superset of faketouch capabilities. Thus, unless you actually require 877 a touchscreen, you should add a <a
|
/frameworks/base/docs/html/distribute/googleplay/ |
D | tv.jd | 199 <li>Your app must declare that it does not require a touchscreen. The 200 manifest must declare the <code>android.hardware.touchscreen</code> hardware
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | providing-resources.jd | 665 <li>{@code notouch}: Device does not have a touchscreen.</li> 666 <li>{@code finger}: Device has a touchscreen that is intended to 669 <p>Also see the {@link android.content.res.Configuration#touchscreen} configuration field, 670 which indicates the type of touchscreen on the device.</p> 754 touchscreen.</li> 1097 choice on the list includes three qualifiers that exactly match the device (orientation, touchscreen
|