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

/frameworks/base/core/jni/
H A Dandroid_content_res_Configuration.cpp39 jfieldID navigation; member in struct:android::__anon828
55 out->navigation = env->GetIntField(clazz, gConfigurationClassInfo.navigation);
88 gConfigurationClassInfo.navigation = GetFieldIDOrDie(env, clazz, "navigation", "I");
H A Dandroid_util_AssetManager.cpp601 jint navigation,
629 config.navigation = (uint8_t)navigation;
596 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.java387 /** Constant for {@link #navigation}: a value indicating that no value has been set. */
389 /** Constant for {@link #navigation}, value corresponding to the
393 /** Constant for {@link #navigation}, value corresponding to the
397 /** Constant for {@link #navigation}, value corresponding to the
401 /** Constant for {@link #navigation}, value corresponding to the
407 * The kind of navigation method available on the device.
411 public int navigation; field in class:Configuration
425 * A flag indicating whether any 5-way or DPAD navigation available.
426 * This will be set on a device with a mechanism to hide the navigation
663 navigation
[all...]
H A DAssetManager.java701 int keyboardHidden, int navigation, int screenWidth, int screenHeight,
699 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.java2041 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;
171 void AConfiguration_setNavigation(AConfiguration* config, int32_t navigation) { argument
172 config->navigation = navigation;
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs1053 <a href="<?cs var:toroot ?>training/tv/start/navigation.html"
1215 <a href="<?cs var:toroot ?>training/design-navigation/index.html"
1217 "How to plan your app's screen hierarchy and forms of navigation so users can
1218 effectively and intuitively traverse your app content using various navigation
1223 <li><a href="<?cs var:toroot ?>training/design-navigation/screen-planning.html">
1227 <li><a href="<?cs var:toroot ?>training/design-navigation/multiple-sizes.html">
1231 <li><a href="<?cs var:toroot ?>training/design-navigation/descendant-lateral.html">
1235 <li><a href="<?cs var:toroot ?>training/design-navigation/ancestral-temporal.html">
1239 <li><a href="<?cs var:toroot ?>training/design-navigation/wireframing.html">
1248 <a href="<?cs var:toroot ?>training/implementing-navigation/inde
[all...]
/frameworks/base/tools/aapt2/
H A DConfigDescription.cpp407 if (out) out->navigation = out->NAVIGATION_ANY;
410 if (out) out->navigation = out->NAVIGATION_NONAV;
413 if (out) out->navigation = out->NAVIGATION_DPAD;
416 if (out) out->navigation = out->NAVIGATION_TRACKBALL;
419 if (out) out->navigation = out->NAVIGATION_WHEEL;
/frameworks/base/tools/aapt/
H A DAaptConfig.cpp671 if (out) out->navigation = out->NAVIGATION_ANY;
674 if (out) out->navigation = out->NAVIGATION_NONAV;
677 if (out) out->navigation = out->NAVIGATION_DPAD;
680 if (out) out->navigation = out->NAVIGATION_TRACKBALL;
683 if (out) out->navigation = out->NAVIGATION_WHEEL;
H A DResourceTable.cpp3106 config.navigation,
3151 tHeader->config.navigation,
3886 config->navigation,
H A DResource.cpp146 mParams.inputFlags, mParams.navigation);
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/
H A DConfigGenerator.java303 public ConfigGenerator setNavigation(Navigation navigation) { argument
304 mNavigation = navigation;
/frameworks/native/include/android/
H A Dconfiguration.h241 * Set the current navigation in the configuration.
243 void AConfiguration_setNavigation(AConfiguration* config, int32_t navigation);
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp1978 if (navigation != o.navigation) diffs |= CONFIG_NAVIGATION;
2136 if (navigation != o.navigation) {
2137 if (!navigation) return false;
2138 if (!o.navigation) return true;
2394 if ((navigation != o.navigation) && requested->navigation) {
2395 return (navigation);
[all...]
/frameworks/base/include/androidfw/
H A DResourceTypes.h1025 uint8_t navigation; member in struct:android::ResTable_config::__anon955::__anon956
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java7390 config.navigation = Configuration.NAVIGATION_NONAV;
7414 config.navigation = Configuration.NAVIGATION_TRACKBALL;
7417 && config.navigation == Configuration.NAVIGATION_NONAV) {
7418 config.navigation = Configuration.NAVIGATION_DPAD;
7429 if (config.navigation == Configuration.NAVIGATION_NONAV && mHasPermanentDpad) {
7430 config.navigation = Configuration.NAVIGATION_DPAD;
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java17202 config.reqNavigation = mConfiguration.navigation;
17203 if (mConfiguration.navigation == Configuration.NAVIGATION_DPAD
17204 || mConfiguration.navigation == Configuration.NAVIGATION_TRACKBALL) {
17427 && config.navigation == Configuration.NAVIGATION_NONAV);
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java312 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
313 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
1607 // Height of the navigation bar when presented horizontally at bottom
1615 // Width of the navigation bar when presented vertically along one side
1626 // Allow the navigation bar to move on non-square small devices (phones).
1669 * @return whether the navigation bar can be hidden, e.g. the device has a
1670 * navigation bar and touch exploration is not enabled
2036 if (config.navigation == Configuration.NAVIGATION_NONAV
2105 // the navigation bar, if available, shows atop most things
2108 // some panels (e.g. search) need to show on top of the navigation ba
[all...]

Completed in 1720 milliseconds