Searched refs:navigation (Results 1 - 18 of 18) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_content_res_Configuration.cpp37 jfieldID navigation; member in struct:android::__anon795
53 out->navigation = env->GetIntField(clazz, gConfigurationClassInfo.navigation);
102 GET_FIELD_ID(gConfigurationClassInfo.navigation, clazz,
103 "navigation", "I");
H A Dandroid_util_AssetManager.cpp600 jint navigation,
624 config.navigation = (uint8_t)navigation;
595 android_content_AssetManager_setConfiguration(JNIEnv* env, jobject clazz, jint mcc, jint mnc, jstring locale, jint orientation, jint touchscreen, jint density, jint keyboard, jint keyboardHidden, jint navigation, jint screenWidth, jint screenHeight, jint smallestScreenWidthDp, jint screenWidthDp, jint screenHeightDp, jint screenLayout, jint uiMode, jint sdkVersion) argument
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java358 /** Constant for {@link #navigation}: a value indicating that no value has been set. */
360 /** Constant for {@link #navigation}, value corresponding to the
364 /** Constant for {@link #navigation}, value corresponding to the
368 /** Constant for {@link #navigation}, value corresponding to the
372 /** Constant for {@link #navigation}, value corresponding to the
378 * The kind of navigation method available on the device.
382 public int navigation; field in class:Configuration
396 * A flag indicating whether any 5-way or DPAD navigation available.
397 * This will be set on a device with a mechanism to hide the navigation
634 navigation
[all...]
H A DAssetManager.java687 int keyboardHidden, int navigation, int screenWidth, int screenHeight,
685 setConfiguration(int mcc, int mnc, String locale, int orientation, int touchscreen, int density, int keyboard, int keyboardHidden, int navigation, int screenWidth, int screenHeight, int smallestScreenWidthDp, int screenWidthDp, int screenHeightDp, int screenLayout, int uiMode, int majorVersion) argument
H A DResources.java1833 keyboardHidden, mConfiguration.navigation, width, height,
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DActivityManagerTest.java104 assertEquals(config.reqNavigation, vconfig.navigation);
105 if (vconfig.navigation == Configuration.NAVIGATION_NONAV) {
/frameworks/base/native/android/
H A Dconfiguration.cpp79 return config->navigation;
167 void AConfiguration_setNavigation(AConfiguration* config, int32_t navigation) { argument
168 config->navigation = navigation;
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs933 <a href="<?cs var:toroot ?>training/tv/start/navigation.html"
1054 <a href="<?cs var:toroot ?>training/design-navigation/index.html"
1056 "How to plan your app's screen hierarchy and forms of navigation so users can
1057 effectively and intuitively traverse your app content using various navigation
1062 <li><a href="<?cs var:toroot ?>training/design-navigation/screen-planning.html">
1066 <li><a href="<?cs var:toroot ?>training/design-navigation/multiple-sizes.html">
1070 <li><a href="<?cs var:toroot ?>training/design-navigation/descendant-lateral.html">
1074 <li><a href="<?cs var:toroot ?>training/design-navigation/ancestral-temporal.html">
1078 <li><a href="<?cs var:toroot ?>training/design-navigation/wireframing.html">
1087 <a href="<?cs var:toroot ?>training/implementing-navigation/inde
[all...]
/frameworks/base/tools/aapt/
H A DAaptConfig.cpp642 if (out) out->navigation = out->NAVIGATION_ANY;
645 if (out) out->navigation = out->NAVIGATION_NONAV;
648 if (out) out->navigation = out->NAVIGATION_DPAD;
651 if (out) out->navigation = out->NAVIGATION_TRACKBALL;
654 if (out) out->navigation = out->NAVIGATION_WHEEL;
H A DResourceTable.cpp3048 config.navigation,
3091 tHeader->config.navigation,
3823 config->navigation,
H A DResource.cpp140 mParams.inputFlags, mParams.navigation));
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/
H A DConfigGenerator.java290 public ConfigGenerator setNavigation(Navigation navigation) { argument
291 mNavigation = navigation;
/frameworks/native/include/android/
H A Dconfiguration.h236 * Set the current navigation in the configuration.
238 void AConfiguration_setNavigation(AConfiguration* config, int32_t navigation);
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp1901 if (navigation != o.navigation) diffs |= CONFIG_NAVIGATION;
2051 if (navigation != o.navigation) {
2052 if (!navigation) return false;
2053 if (!o.navigation) return true;
2300 if ((navigation != o.navigation) && requested->navigation) {
2301 return (navigation);
[all...]
/frameworks/base/include/androidfw/
H A DResourceTypes.h1024 uint8_t navigation; member in struct:android::ResTable_config::__anon914::__anon915
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java7263 config.navigation = Configuration.NAVIGATION_NONAV;
7287 config.navigation = Configuration.NAVIGATION_TRACKBALL;
7290 && config.navigation == Configuration.NAVIGATION_NONAV) {
7291 config.navigation = Configuration.NAVIGATION_DPAD;
7302 if (config.navigation == Configuration.NAVIGATION_NONAV && mHasPermanentDpad) {
7303 config.navigation = Configuration.NAVIGATION_DPAD;
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java16593 config.reqNavigation = mConfiguration.navigation;
16594 if (mConfiguration.navigation == Configuration.NAVIGATION_DPAD
16595 || mConfiguration.navigation == Configuration.NAVIGATION_TRACKBALL) {
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java285 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
286 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
1414 // Height of the navigation bar when presented horizontally at bottom
1422 // Width of the navigation bar when presented vertically along one side
1433 // Allow the navigation bar to move on small devices (phones).
1476 * @return whether the navigation bar can be hidden, e.g. the device has a
1477 * navigation bar and touch exploration is not enabled
1811 if (config.navigation == Configuration.NAVIGATION_NONAV
1879 // the navigation bar, if available, shows atop most things
1882 // some panels (e.g. search) need to show on top of the navigation ba
[all...]

Completed in 1078 milliseconds