Home
last modified time | relevance | path

Searched refs:touchscreen (Results 1 – 25 of 59) sorted by relevance

123

/frameworks/base/core/java/android/content/res/
DConfiguration.java324 public int touchscreen; field in Configuration
659 touchscreen = o.touchscreen; in setTo()
767 switch (touchscreen) { in toString()
772 default: sb.append(" touch="); sb.append(touchscreen); break; in toString()
824 touchscreen = TOUCHSCREEN_UNDEFINED; in setToDefaults()
889 if (delta.touchscreen != TOUCHSCREEN_UNDEFINED in updateFrom()
890 && touchscreen != delta.touchscreen) { in updateFrom()
892 touchscreen = delta.touchscreen; in updateFrom()
1036 if (delta.touchscreen != TOUCHSCREEN_UNDEFINED in diff()
1037 && touchscreen != delta.touchscreen) { in diff()
[all …]
/frameworks/base/core/jni/
Dandroid_content_res_Configuration.cpp35 jfieldID touchscreen; member
53 out->touchscreen = env->GetIntField(clazz, gConfigurationClassInfo.touchscreen); in android_Configuration_getFromJava()
83 gConfigurationClassInfo.touchscreen = GetFieldIDOrDie(env, clazz, "touchscreen", "I"); in register_android_content_res_Configuration()
/frameworks/base/native/android/
Dconfiguration.cpp67 return config->touchscreen; in AConfiguration_getTouchscreen()
159 void AConfiguration_setTouchscreen(AConfiguration* config, int32_t touchscreen) { in AConfiguration_setTouchscreen() argument
160 config->touchscreen = touchscreen; in AConfiguration_setTouchscreen()
/frameworks/base/docs/html-intl/intl/ja/training/tv/start/
Dhardware.jd70 <td>{@code android.hardware.touchscreen}</td>
106 &lt;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>
Dstart.jd115 <h3 id="no-touchscreen">タッチスクリーンの不要を宣言する</h3>
118 …TV 端末向けアプリでは、入力はタッチスクリーンに依存しません 。これを明確にするために、TV アプリのマニフェストで {@code android.hardware.touchscreen} 機…
123 <strong>&lt;uses-feature android:name="android.hardware.touchscreen"
/frameworks/base/tools/aapt2/
DConfigDescription.cpp324 if (out) out->touchscreen = out->TOUCHSCREEN_ANY; in parseTouchscreen()
327 if (out) out->touchscreen = out->TOUCHSCREEN_NOTOUCH; in parseTouchscreen()
330 if (out) out->touchscreen = out->TOUCHSCREEN_STYLUS; in parseTouchscreen()
333 if (out) out->touchscreen = out->TOUCHSCREEN_FINGER; in parseTouchscreen()
/frameworks/base/docs/html/guide/topics/manifest/
Duses-configuration-element.jd40 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 &lt;uses-feature>}</a> tag to declare the required touchscreen
Duses-feature-element.jd516 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/
Dhardware.jd88 <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 &lt;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.
Dstart.jd177 <h3 id="no-touchscreen">Declare touchscreen not required</h3>
182 android.hardware.touchscreen} feature is not required. This setting identifies your app as being
189 &lt;uses-feature android:name="android.hardware.touchscreen"
/frameworks/base/core/tests/coretests/src/android/app/activity/
DActivityManagerTest.java103 assertEquals(config.reqTouchScreen, vconfig.touchscreen); in testGetDeviceConfigurationInfo()
/frameworks/base/tools/aapt/
DAaptConfig.cpp588 if (out) out->touchscreen = out->TOUCHSCREEN_ANY; in parseTouchscreen()
591 if (out) out->touchscreen = out->TOUCHSCREEN_NOTOUCH; in parseTouchscreen()
594 if (out) out->touchscreen = out->TOUCHSCREEN_STYLUS; in parseTouchscreen()
597 if (out) out->touchscreen = out->TOUCHSCREEN_FINGER; in parseTouchscreen()
/frameworks/native/include/android/
Dconfiguration.h213 void AConfiguration_setTouchscreen(AConfiguration* config, int32_t touchscreen);
/frameworks/base/libs/androidfw/
DResourceTypes.cpp1947 if (touchscreen != o.touchscreen) { in compareLogical()
1948 return touchscreen < o.touchscreen ? -1 : 1; in compareLogical()
1974 if (touchscreen != o.touchscreen) diffs |= CONFIG_TOUCHSCREEN; in diff()
2115 if (touchscreen != o.touchscreen) { in isMoreSpecificThan()
2116 if (!touchscreen) return false; in isMoreSpecificThan()
2117 if (!o.touchscreen) return true; in isMoreSpecificThan()
2355 if ((touchscreen != o.touchscreen) && requested->touchscreen) { in isBetterThan()
2356 return (touchscreen); in isBetterThan()
2533 if (touchscreen != 0 && touchscreen != settings.touchscreen) { in match()
2907 if (touchscreen != TOUCHSCREEN_ANY) { in toString()
[all …]
/frameworks/base/docs/html/guide/topics/ui/accessibility/
Dindex.jd46 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/
Dchecklist.jd130 <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/
Dtexture.jd281 uses-feature:'android.hardware.touchscreen'
299 …roid.hardware.touchscreen</code> requirement is also implicitly added. If you want your APK to be …
301 &lt;uses-feature android:name="android.hardware.touchscreen" android:required="false" /&gt;
Dapi.jd362 uses-feature:'android.hardware.touchscreen'
380 …roid.hardware.touchscreen</code> requirement is also implicitly added. If you want your APK to be …
382 &lt;uses-feature android:name="android.hardware.touchscreen" android:required="false" /&gt;
Dscreensize.jd336 uses-feature:'android.hardware.touchscreen'
355 …roid.hardware.touchscreen</code> requirement is also implicitly added. If you want your APK to be …
357 &lt;uses-feature android:name="android.hardware.touchscreen" android:required="false" /&gt;
Dmultiple.jd458 uses-feature:'android.hardware.touchscreen'
476 …roid.hardware.touchscreen</code> requirement is also implicitly added. If you want your APK to be …
478 &lt;uses-feature android:name="android.hardware.touchscreen" android:required="false" /&gt;
/frameworks/base/docs/html-intl/intl/ru/distribute/googleplay/
Dtv.jd189 этого в манифесте для оборудования <code>android.hardware.touchscreen</code> необходимо установить
/frameworks/base/docs/html-intl/intl/zh-tw/distribute/googleplay/
Dtv.jd122 …說明必須使用 <code>android:required="false”</code> 宣告 <code>android.hardware.touchscreen</code> 硬體。請在<a …
/frameworks/base/core/java/android/app/
DResourcesManager.java85 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH; in applyNonDefaultDisplayMetricsToConfigurationLocked()
/frameworks/base/docs/html-intl/intl/zh-cn/distribute/googleplay/
Dtv.jd189 <code>android.hardware.touchscreen</code>硬件。
/frameworks/base/docs/html-intl/intl/ja/distribute/googleplay/
Dtv.jd122 …<li>アプリはタッチスクリーンを必要としないことを宣言する必要があります。マニフェストでは、<code>android.hardware.touchscreen</code> ハードウェアを <…

123