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::__anon967
53 out->navigation = env->GetIntField(clazz, gConfigurationClassInfo.navigation);
111 GET_FIELD_ID(gConfigurationClassInfo.navigation, clazz,
112 "navigation", "I");
H A Dandroid_util_AssetManager.cpp511 jint navigation,
535 config.navigation = (uint8_t)navigation;
506 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/docs/html/training/
H A Dtraining_toc.cs548 <a href="<?cs var:toroot ?>training/design-navigation/index.html"
550 "How to plan your app's screen hierarchy and forms of navigation so users can
551 effectively and intuitively traverse your app content using various navigation
556 <li><a href="<?cs var:toroot ?>training/design-navigation/screen-planning.html">
560 <li><a href="<?cs var:toroot ?>training/design-navigation/multiple-sizes.html">
564 <li><a href="<?cs var:toroot ?>training/design-navigation/descendant-lateral.html">
568 <li><a href="<?cs var:toroot ?>training/design-navigation/ancestral-temporal.html">
572 <li><a href="<?cs var:toroot ?>training/design-navigation/wireframing.html">
581 <a href="<?cs var:toroot ?>training/implementing-navigation/index.html"
583 "How to implement various navigation pattern
[all...]
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java342 /** Constant for {@link #navigation}: a value indicating that no value has been set. */
344 /** Constant for {@link #navigation}, value corresponding to the
348 /** Constant for {@link #navigation}, value corresponding to the
352 /** Constant for {@link #navigation}, value corresponding to the
356 /** Constant for {@link #navigation}, value corresponding to the
362 * The kind of navigation method available on the device.
366 public int navigation; field in class:Configuration
380 * A flag indicating whether any 5-way or DPAD navigation available.
381 * This will be set on a device with a mechanism to hide the navigation
568 navigation
[all...]
H A DAssetManager.java654 int keyboardHidden, int navigation, int screenWidth, int screenHeight,
652 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.java1489 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/tools/aapt/
H A DAaptAssets.cpp277 // navigation hidden
284 // navigation
287 *value = config.navigation;
338 return config.navigation;
627 // navigation hidden
649 //printf("not navigation: %s\n", part.string());
696 this->navigation = nav;
744 s += navigation;
858 if (this->navigation != "") {
862 s += navigation;
[all...]
H A DAaptAssets.h136 String8 navigation; member in struct:AaptGroupEntry
H A DResourceTable.cpp2832 config.navigation,
2875 tHeader->config.navigation,
3511 config->navigation,
H A DResource.cpp135 mParams.inputFlags, mParams.navigation));
/frameworks/native/include/android/
H A Dconfiguration.h231 * Set the current navigation in the configuration.
233 void AConfiguration_setNavigation(AConfiguration* config, int32_t navigation);
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp1526 if (navigation != o.navigation) diffs |= CONFIG_NAVIGATION;
1642 if (navigation != o.navigation) {
1643 if (!navigation) return false;
1644 if (!o.navigation) return true;
1863 if ((navigation != o.navigation) && requested->navigation) {
1864 return (navigation);
[all...]
/frameworks/base/include/androidfw/
H A DResourceTypes.h904 uint8_t navigation; member in struct:android::ResTable_config::__anon1044::__anon1045
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java6974 config.navigation = Configuration.NAVIGATION_NONAV;
6998 config.navigation = Configuration.NAVIGATION_TRACKBALL;
7001 && config.navigation == Configuration.NAVIGATION_NONAV) {
7002 config.navigation = Configuration.NAVIGATION_DPAD;
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java268 boolean mNavigationBarCanMove = false; // can the navigation bar ever move to the side?
269 boolean mNavigationBarOnBottom = true; // is the navigation bar on the bottom *right now*?
987 // Height of the navigation bar when presented horizontally at bottom
997 // Width of the navigation bar when presented vertically along one side
1009 // 0-599dp: "phone" UI with a separate status & navigation bar
1042 // the navigation bar will provide more useful space for wide
1046 // The navigation bar is at the right in landscape; it seems always
1327 if (config.navigation == Configuration.NAVIGATION_NONAV
1391 // the navigation bar, if available, shows atop most things
1394 // some panels (e.g. search) need to show on top of the navigation ba
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java12230 config.reqNavigation = mConfiguration.navigation;
12231 if (mConfiguration.navigation == Configuration.NAVIGATION_DPAD
12232 || mConfiguration.navigation == Configuration.NAVIGATION_TRACKBALL) {

Completed in 284 milliseconds