/frameworks/base/docs/html/design/patterns/ |
D | selection.jd | 6 handle multi-select and contextual actions in your apps.</p> 15 actions for a given data item in a contextual menu.</p> 17 contextual actions and selection management functions for selected data into a new element called 62 <h4>Selecting CAB actions</h4> 63 <p>You can decide which actions and elements appear in the CAB. Use the guidelines in the <a href="… 66 <h4>Dynamically adjust CAB actions</h4> 67 <p>In most cases you need to adjust the actions in the CAB dynamically as the user adds more items … 76 Adjusting actions in the CAB as additional items are selected. 97 <p>Plan the actions you want to display inside of a CAB in the same way you would plan the actions
|
D | actionbar.jd | 11 <li>Make important actions (such as <em>New</em> or <em>Search</em>, etc) prominent and accessible … 14 <li>Reduce clutter by providing an action overflow for rarely used actions.</li> 68 Show the most important actions of your app in the actions section. Actions that don't fit in the 76 Move less often used actions to the action overflow. 112 <p>To display actions and, if necessary, the action overflow, use the bottom bar.</p> 143 content of a CAB in order to insert the actions you would like the user to be able to perform.</p> 227 estate, the system shows your most important actions as action buttons and moves the rest to the 228 action overflow. The action bar and the action overflow should only present actions to the user that 237 <p>For guidance on prioritizing actions, use the FIT scheme.</p> 275 Pre-defined glyphs should be used for certain common actions such as "refresh" and "share." The [all …]
|
D | compatibility.jd | 18 <p>Android apps written for Android 3.0 and later display actions in the action bar. Actions that d… 37 resulting actions popup has the same style as in the previous example, but is displayed at the bott… 53 can touch the control to display the app's actions in the traditional Android menu styling.</p>
|
D | new-4-0.jd | 28 navigation across the platform and allows your app to surface actions.</p> 62 <p>The long press gesture which was traditionally used to show contextual actions for objects is now 63 used for data selection. When selecting data, contextual action bars allow you to surface actions.<…
|
D | app-structure.jd | 74 <h4>Set up action bars for navigation and actions</h4> 76 important actions.</p> 169 invocation of actions for a data item from within list or grid views, display prominent actions 170 directly on list view items using drop-downs or split list items. This lets people invoke actions on 183 delete multiple items in the category view. Analyze which detail view actions are applicable to 184 collections of items. Then use multi-select to allow application of those actions to multiple items
|
/frameworks/base/core/java/android/app/ |
D | Notification.java | 497 private Action[] actions; field in Notification 595 actions = parcel.createTypedArray(Action.CREATOR); in Notification() 658 that.actions = new Action[this.actions.length]; in clone() 659 for(int i=0; i<this.actions.length; i++) { in clone() 660 that.actions[i] = this.actions[i].clone(); in clone() 754 parcel.writeTypedArray(actions, 0); in writeToParcel() 886 if (actions != null) { in toString() 888 sb.append(actions.length); in toString() 890 if (actions.length > 1) sb.append("s"); in toString() 1488 big.setViewVisibility(R.id.actions, View.VISIBLE); in applyStandardTemplateWithActions() [all …]
|
/frameworks/base/docs/html/guide/topics/manifest/ |
D | action-element.jd | 27 <dd>The name of the action. Some standard actions are defined in the 29 {@code ACTION_<i>string</i>} constants. To assign one of these actions to 36 For actions you define, it's best to use the package name as a prefix to
|
/frameworks/base/core/java/android/webkit/ |
D | AccessibilityInjectorFallback.java | 450 int[] actions = new int[actionStrings.length]; in ensureWebContentKeyBindings() local 451 for (int i = 0, count = actions.length; i < count; i++) { in ensureWebContentKeyBindings() 452 actions[i] = Integer.decode(actionStrings[i].trim()); in ensureWebContentKeyBindings() 454 sBindings.add(new AccessibilityWebContentKeyBinding(keyCodeAndModifiers, actions)); in ensureWebContentKeyBindings()
|
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/ |
D | BluetoothTestUtils.java | 1377 private void addReceiver(BroadcastReceiver receiver, String[] actions) { in addReceiver() argument 1379 for (String action: actions) { in addReceiver() 1387 String[] actions = { in getBluetoothReceiver() local 1393 addReceiver(receiver, actions); in getBluetoothReceiver() 1399 String[] actions = { in getPairReceiver() local 1403 addReceiver(receiver, actions); in getPairReceiver() 1409 String[] actions = { in getConnectProfileReceiver() local 1415 addReceiver(receiver, actions); in getConnectProfileReceiver() 1421 String[] actions = {BluetoothPan.ACTION_CONNECTION_STATE_CHANGED}; in getConnectPanReceiver() local 1423 addReceiver(receiver, actions); in getConnectPanReceiver() [all …]
|
/frameworks/base/docs/html/guide/topics/ui/ |
D | menus.jd | 61 actions and other options in your activities.</p> 66 user actions.</p> 69 a set of actions and options is still based on the {@link android.view.Menu} APIs. This 76 activity. It's where you should place actions that have a global impact on the app, such as 84 don't have one), so you should migrate toward using the action bar to provide access to actions and 92 user performs a long-click on an element. It provides actions that affect the selected content or 95 href="#CAB">contextual action mode</a> to enable actions on selected content. This mode displays 103 invoked the menu. It's good for providing an overflow of actions that relate to specific content or 105 <strong>not</strong> directly affect the corresponding content—that's what contextual actions 106 are for. Rather, the popup menu is for extended actions that relate to regions of content in your [all …]
|
/frameworks/compile/libbcc/runtime/lib/ |
D | gcc_personality_v0.c | 186 _Unwind_Reason_Code __gcc_personality_v0(int version, _Unwind_Action actions, in __gcc_personality_v0() argument 192 if ( actions & _UA_SEARCH_PHASE ) in __gcc_personality_v0()
|
/frameworks/testing/uiautomator/utils/uiautomatorviewer/src/com/android/uiautomator/actions/ |
D | ExpandAllAction.java | 17 package com.android.uiautomator.actions;
|
D | ToggleNafAction.java | 17 package com.android.uiautomator.actions;
|
D | OpenFilesAction.java | 17 package com.android.uiautomator.actions;
|
D | ImageHelper.java | 17 package com.android.uiautomator.actions;
|
/frameworks/testing/uiautomator/utils/uiautomatorviewer/src/com/android/uiautomator/ |
D | UiAutomatorViewer.java | 19 import com.android.uiautomator.actions.ExpandAllAction; 20 import com.android.uiautomator.actions.OpenFilesAction; 21 import com.android.uiautomator.actions.ScreenshotAction; 22 import com.android.uiautomator.actions.ToggleNafAction;
|
/frameworks/base/docs/html/tools/help/ |
D | adt.jd | 252 context-sensitive actions in the layout actions bar, such as adjusting layout margins and 254 The layout actions bar displays available actions depending on the selected UI element in the 290 <a href="http://www.youtube.com/watch?v=Oq05KqjXTvs#t=11m43s">layout actions bar</a> 352 … <li>Edit views with the layout actions bar: The context-sensitive layout actions bar allows you to 353 edit how a view is laid out in your UI. The available actions depend on the currently 354 selected view and its parent layout. Some common actions include 357 in a {@link android.widget.LinearLayout}, you see actions related to the {@link 360 aligned along their text baseline. You will also see toolbar actions to control the individual
|
D | android.jd | 48 <h3>AVD actions and options</h3> 184 <h3>Project actions and options</h3> 387 <h3>Update actions</h3>
|
/frameworks/base/docs/html/design/get-started/ |
D | ui-overview.jd | 128 navigating your app's hierarchy and views, and also surfaces the most important actions.</p> 142 <p>Split action bars provide a way to distribute actions across additional bars located below 144 important actions that won't fit in the main bar to the bottom.</p>
|
/frameworks/base/docs/html/design/building-blocks/ |
D | dialogs.jd | 28 action. However, if the options consist of specific actions such as Close or Wait rather than 31 whereas the affirmative actions are on the right.</p>
|
/frameworks/base/docs/html/design/style/ |
D | iconography.jd | 97 Action bar icons are graphic buttons that represent the most important actions people can take 104 Pre-defined glyphs should be used for certain common actions such as "refresh" and "share." The 193 <p>Within the body of your app, use small icons to surface actions and/or provide status for specif…
|
D | touch-feedback.jd | 8 indicate what actions are enabled and disabled.</p>
|
/frameworks/base/docs/html/guide/practices/app-design/ |
D | index.jd | 8 … by how well the application responds to the user's keypresses and other actions, how it well it i…
|
/frameworks/base/docs/html/guide/components/ |
D | intents-filters.jd | 169 pre-defined constants for generic actions. Other actions are defined 198 actions are paired with different kinds of data specifications. For example, if 233 placed in an Intent object. As it does for actions, the Intent class defines 276 component handling the intent. Just as some actions are paired with particular 401 to certain actions and data sources, someone could always put 439 element in the manifest file lists actions as 459 one of the actions listed in the filter. If the object or the filter 464 <li>If the filter fails to list any actions, there is nothing for an 486 Note that the constants described earlier for actions and categories are not 808 the {@code VIEW} and {@code EDIT} actions), or to pick a particular note [all …]
|
/frameworks/base/docs/html/guide/topics/connectivity/ |
D | wifip2p.jd | 69 …i-Fi hardware on your device to do things like discover and connect to peers. The following actions 138 <th>Associated actions</th> 222 Carry out any necessary actions depending on the intent that is 231 arguments and uses these two classes to appropriately carry out the needed actions when the 383 …in {@link android.net.wifi.p2p.WifiP2pManager}. The next sections describe how to do common actions 489 the data from the client. Carry out any actions with this data, such as saving it to a file
|