OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:navigation
(Results
1 - 25
of
1296
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/sdk/apps/DeviceConfig/res/values-nonav/
strings.xml
3
<string name="
navigation
">NO NAV</string>
/sdk/apps/DeviceConfig/res/values-trackball/
strings.xml
3
<string name="
navigation
">TRACKBALL</string>
/sdk/apps/DeviceConfig/res/values-wheel/
strings.xml
3
<string name="
navigation
">WHEEL</string>
/external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
InvalidPositionException.java
6
package jme3tools.
navigation
;
/sdk/apps/DeviceConfig/res/values-dpad/
strings.xml
3
<string name="
navigation
">D-PAD</string>
/external/webkit/Source/WebCore/manual-tests/
navigation-during-onload-triggered-by-back.html
5
<p>Same-document
navigation
in onload triggered by back
navigation
.</p>
8
<li>Click <a href="resources/
navigation
-during-onload-container.html">here</a>.</li>
textarea-iframe-navigation.html
5
<p>Textarea inside iframe --
Navigation
</p>
9
<li>Wait for the
navigation
to happen</li>
/device/asus/grouper/overlay/frameworks/base/core/res/res/values/
dimens.xml
3
<!--
Navigation
bar is taller in portrait. -->
/device/asus/tilapia/overlay/frameworks/base/core/res/res/values/
dimens.xml
3
<!--
Navigation
bar is taller in portrait. -->
/external/webkit/Source/WebCore/manual-tests/spatial-navigation/
frameset.html
5
<frame src="spatial-
navigation
-test-cases.html"/>
/frameworks/base/docs/html/design/patterns/
navigation-drawer.jd
1
page.title=
Navigation
Drawer
6
<a class="notice-developers" href="{@docRoot}training/implementing-
navigation
/nav-drawer.html">
9
<p>Creating a
Navigation
Drawer</p>
14
<p>The
navigation
drawer is a panel that transitions in from the left edge of the screen and
15
displays the app?s main
navigation
options.</p>
18
<h4>Displaying the
navigation
drawer</h4>
20
<p>The user can bring the
navigation
drawer onto the screen by swiping from the left edge of the
23
<p>As the
navigation
drawer expands, it overlays the content but not the action bar. When the
26
the
navigation
drawer. The overflow menu with the standard action items for Settings and Help
31
The user can open the drawer panel by touching the
navigation
drawer indicator
[
all
...]
compatibility.jd
14
<li>Deprecation of
navigation
hardware keys (Back, Menu, Search, Home) in favor of handling
navigation
25
<h4>Phones with virtual
navigation
controls</h4>
42
<h4>Phones with physical
navigation
keys</h4>
43
<p>Android phones with traditional
navigation
hardware keys don't display the virtual
navigation
bar at
58
<h4>Legacy apps on phones with virtual
navigation
controls</h4>
59
<p>When you run an app that was built for Android 2.3 or earlier on a phone with virtual
navigation
60
controls, an action overflow control appears at the right side of the virtual
navigation
bar. You
/frameworks/base/docs/html/training/implementing-navigation/
index.jd
1
page.title=Implementing Effective
Navigation
17
<li><a href="{@docRoot}training/design-
navigation
/index.html">Designing Effective
Navigation
</a></li>
40
<p>This class demonstrates how to implement the key
navigation
design patterns detailed in the
41
<a href="{@docRoot}training/design-
navigation
/index.html">Designing Effective
Navigation
</a> class.
45
implement
navigation
patterns with tabs, swipe views, and a
navigation
drawer. You should also
46
understand how to provide proper <em>Up</em> and <em>Back</em>
navigation
.</p>
62
<dt><strong><a href="nav-drawer.html">Creating a
Navigation
Drawer</a></strong></dt
[
all
...]
descendant.jd
1
page.title=Implementing Descendant
Navigation
2
parent.title=Implementing Effective
Navigation
6
previous.title=Implementing Temporal
Navigation
22
<li><a href="{@docRoot}training/design-
navigation
/descendant-lateral.html">Providing Descendant and Lateral
Navigation
</a></li>
39
<p><em>Descendant
navigation
</em> is
navigation
down the application's information hierarchy. This is described in <a href="{@docRoot}training/design-
navigation
/descendant-lateral.html">Designing Effective
Navigation
</a> and also covered in <a href="{@docRoot}design/patterns/app-structure.html">Android Design: Application Structure</a>.</p>
41
<p>Descendant
navigation
is usually implemented using {@link android.content.Intent} objects and {@link android.content.Con (…)
[
all
...]
/cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoActivity.java
78
String
navigation
= null;
local
79
if (con.
navigation
== Configuration.NAVIGATION_UNDEFINED) {
80
navigation
= "undefined";
81
} else if (con.
navigation
== Configuration.NAVIGATION_NONAV) {
82
navigation
= "nonav";
83
} else if (con.
navigation
== Configuration.NAVIGATION_DPAD) {
84
navigation
= "drap";
85
} else if (con.
navigation
== Configuration.NAVIGATION_TRACKBALL) {
86
navigation
= "trackball";
87
} else if (con.
navigation
== Configuration.NAVIGATION_WHEEL)
[
all
...]
/frameworks/base/docs/html/training/design-navigation/
ancestral-temporal.jd
1
page.title=Providing Ancestral and Temporal
Navigation
2
parent.title=Designing Effective
Navigation
6
previous.title=Providing Descendant and Lateral
Navigation
18
<li><a href="#temporal-
navigation
">Support Temporal
Navigation
: <em>Back</em></a></li>
19
<li><a href="#ancestral-
navigation
">Provide Ancestral
Navigation
: <em>Up</em> and <em>Home</em></a></li>
24
<li><a href="{@docRoot}design/patterns/
navigation
.html">Android Design:
Navigation
</a></li>
34
ancestor screens. Additionally, we should ensure that temporal
navigation
via the <em>Back</em
[
all
...]
index.jd
1
page.title=Designing Effective
Navigation
24
<p>This class shows you how to plan out the high-level screen hierarchy for your application and then choose appropriate forms of
navigation
to allow users to effectively and intuitively traverse your content. Each lesson covers various stages in the interaction design process for
navigation
in Android applications, in roughly chronological order. After going through the lessons in this class, you should be able to apply the methodology and
navigation
paradigms outlined here to your own applications, providing a coherent
navigation
experience for your users.</p>
38
<dt><strong><a href="descendant-lateral.html">Providing Descendant and Lateral
Navigation
</a></strong></dt>
41
<dt><strong><a href="ancestral-temporal.html">Providing Ancestral and Temporal
Navigation
</a></strong></dt>
43
practices for the <em>Back</em> button and temporal
navigation
, or
navigation
to previous screens
47
<dd>Learn how to create screen wireframes (low-fidelity graphic mockups) representing the screens in a news application based on the desired information model. These wireframes utilize navigational elements discussed in previous lessons to demonstrate intuitive and efficient
navigation
.</dd
[
all
...]
descendant-lateral.jd
1
page.title=Providing Descendant and Lateral
Navigation
2
parent.title=Designing Effective
Navigation
8
next.title=Providing Ancestral and Temporal
Navigation
37
<p>One way of providing access to the full range of an application's screens is to expose hierarchical
navigation
. In this lesson we discuss <em>descendant
navigation
</em>, allowing users to descend 'down' a screen hierarchy into a child screen, and <em>lateral
navigation
</em>, allowing users to access sibling screens.</p>
40
<img src="{@docRoot}images/training/app-
navigation
-descendant-lateral-desc.png"
41
alt="Descendant and lateral
navigation
" id="figure-desc">
43
<p class="img-caption"><strong>Figure 1.</strong> Descendant and lateral
navigation
.</p>
49
<img src="{@docRoot}images/training/app-
navigation
-descendant-lateral-children.png
[
all
...]
/development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
CompatActionBarNavHandler.java
25
* Adapter for action bar
navigation
events.
27
* This class implements an adapter that facilitates handling of action bar
navigation
events.
29
* Action Bar, and it will relay the
navigation
events to a configured listener
36
// The listener that we notify of
navigation
events
42
* @param listener the listener to notify when a
navigation
event occurs.
51
* This will cause a
navigation
event to be delivered to the configured listener.
60
* Called by framework when a item on the
navigation
menu is selected.
62
* This will cause a
navigation
event to be delivered to the configured listener.
CompatActionBarNavListener.java
20
* A listener that listens to
navigation
events.
22
* Represents a listener for
navigation
events delivered by {@link CompatActionBarNavHandler}.
/sdk/templates/activities/BlankActivity/root/src/app_package/
include_onOptionsItemSelected.java.ftl
10
// more details, see the
Navigation
pattern on Android Design:
12
// http://developer.android.com/design/patterns/
navigation
.html#up-vs-back
/development/samples/training/threadsample/res/values/
bools.xml
3
The reason this is done is that on tablets (>= sw600) , hiding the
navigation
has no function,
/frameworks/base/core/res/res/raw-fr/
incognito_mode_start_page.html
4
<title>Nouvelle fenêtre de
navigation
privée</title>
7
<p><strong>Vous êtes passé en
navigation
privée</strong>. Les pages que vous consultez dans cette fenêtre n'apparaîtront ni dans l'historique de votre navigateur, ni dans l'historique des recherches, et ne laisseront aucune trace (comme les cookies) sur votre appareil une fois que vous aurez fermé la fenêtre de
navigation
privée. Tous les fichiers téléchargés et les favoris créés seront toutefois conservés.</p>
9
<p><strong>Passer en
navigation
privée n'a aucun effet sur les autres utilisateurs, serveurs ou logiciels. Méfiez-vous :</strong></p>
/frameworks/base/core/res/res/raw-fr-xlarge/
incognito_mode_start_page.html
4
<title>Nouvelle fenêtre de
navigation
privée</title>
7
<p><strong>Vous êtes passé en
navigation
privée</strong>. Les pages que vous consultez dans cette fenêtre n'apparaîtront ni dans l'historique de votre navigateur, ni dans l'historique des recherches, et ne laisseront aucune trace (comme les cookies) sur votre appareil une fois que vous aurez fermé la fenêtre de
navigation
privée. Tous les fichiers téléchargés et les favoris créés seront toutefois conservés.</p>
9
<p><strong>Passer en
navigation
privée n'a aucun effet sur les autres utilisateurs, serveurs ou logiciels. Méfiez-vous :</strong></p>
/external/chromium/chrome/browser/ui/
browser_navigator_browsertest.h
22
// Browsertest class for testing the browser
navigation
. It is also a base class
23
// for the |BrowserGuestModeNavigation| which tests
navigation
while in guest
Completed in 382 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>