Home
last modified time | relevance | path

Searched refs:Action (Results 1 – 25 of 115) sorted by relevance

12345

/frameworks/base/docs/html/guide/practices/ui_guidelines/
Dicon_design_action_bar.jd1 page.title=Action Bar Icons
27 <li><a href="{@docRoot}guide/topics/ui/actionbar.html">Using the Action Bar</a></li>
41 <p>Action Bar icons are graphical elements placed in the <a
42 href="{@docRoot}guide/topics/ui/actionbar.html">Action Bar</a> representing individual action
71 <p>Action Bar icons should be 32-bit PNGs with an alpha channel for transparency. The finished
76 finished Action Bar icon dimensions for each generalized screen density.</p>
101 Action Bar Icon Size
123 <p>Action Bar icons are flat, pictured face on, and generally greyscale, depending on the
124 application's theme. Action Bar icons should not look three-dimensional.</p>
126 <p>In order to maintain consistency across the application's Action Bar, all Action Bar icons should
[all …]
/frameworks/base/docs/html/training/basics/actionbar/
Dindex.jd1 page.title=Adding the Action Bar
20 <li><a href="{@docRoot}guide/topics/ui/actionbar.html">Action Bar</a></li>
31 <p>Action Bar</p>
50 <a href="{@docRoot}guide/topics/ui/actionbar.html">Action Bar</a> guide.</p>
56 <dt><b><a href="setting-up.html">Setting Up the Action Bar</a></b></dt>
60 <dt><b><a href="adding-buttons.html">Adding Action Buttons</a></b></dt>
62 <dt><b><a href="styling.html">Styling the Action Bar</a></b></dt>
64 <dt><b><a href="overlaying.html">Overlaying the Action Bar</a></b></dt>
Dadding-buttons.jd1 page.title=Adding Action Buttons
13 <li><a href="#AddActions">Add the Actions to the Action Bar</a></li>
14 <li><a href="#Respond">Respond to Action Buttons</a></li>
69 <a href="{@docRoot}design/downloads/index.html#action-bar-icon-pack">Action Bar Icon Pack</a>.</p>
114 <h2 id="AddActions">Add the Actions to the Action Bar</h2>
133 <h2 id="Respond">Respond to Action Buttons</h2>
Dsetting-up.jd1 page.title=Setting Up the Action Bar
62 see <a href="{@docRoot}training/basics/actionbar/styling.html">Styling the Action Bar</a>.</p>
99 the Action Bar</a>.</p>
/frameworks/base/docs/html/design/patterns/
Dgestures.jd18 <h4>Action</h4>
30 <h4>Action</h4>
43 <h4>Action</h4>
60 <h4>Action</h4>
72 <h4>Action</h4>
84 <h4>Action</h4>
108 <h4>Action</h4>
119 <h4>Action</h4>
Dactionbar.jd1 page.title=Action Bar
10 <p>Action Bar</p>
69 <li class="value-3"><h4>Action buttons</h4>
77 <li class="value-4"><h4>Action overflow</h4>
100 <h2 id="considerations-split-action-bars">Layout Considerations for Split Action Bars</h2>
126 <h2 id="ActionButtons">Action Buttons</h2>
127 <p><em>Action buttons</em> on the action bar surface your app's most important activities. Think ab…
184 <a onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Action Bar Icons (@actionbar page)']);"
185 …href="{@docRoot}downloads/design/Android_Design_Icons_20130926.zip">Download the Action Bar Icon P…
192 <h4>Action overflow</h4>
[all …]
/frameworks/base/core/java/android/speech/tts/
DTextToSpeech.java613 private <R> R runActionNoReconnect(Action<R> action, R errorResult, String method, in runActionNoReconnect()
618 private <R> R runAction(Action<R> action, R errorResult, String method) { in runAction()
622 private <R> R runAction(Action<R> action, R errorResult, String method, in runAction()
727 runActionNoReconnect(new Action<Void>() { in shutdown()
892 return runAction(new Action<Integer>() { in speak()
932 return runAction(new Action<Integer>() {
969 return runAction(new Action<Integer>() {
993 return runAction(new Action<Set<String>>() {
1025 return runAction(new Action<Boolean>() {
1040 return runAction(new Action<Integer>() {
[all …]
/frameworks/base/core/java/android/widget/
DRemoteViews.java97 private ArrayList<Action> mActions;
238 private abstract static class Action implements Parcelable { class in RemoteViews
290 HashMap<String, Action> map = new HashMap<String, Action>(); in mergeRemoteViews()
292 mActions = new ArrayList<Action>(); in mergeRemoteViews()
297 Action a = mActions.get(i); in mergeRemoteViews()
301 ArrayList<Action> newActions = copy.mActions; in mergeRemoteViews()
305 Action a = newActions.get(i); in mergeRemoteViews()
308 if (map.containsKey(key) && mergeBehavior == Action.MERGE_REPLACE) { in mergeRemoteViews()
314 if (mergeBehavior == Action.MERGE_REPLACE || mergeBehavior == Action.MERGE_APPEND) { in mergeRemoteViews()
324 private class SetEmptyView extends Action {
[all …]
/frameworks/base/drm/java/android/drm/
DDrmStore.java163 public static class Action { class in DrmStore
218 public Action() {} in Action() method in DrmStore.Action
/frameworks/base/core/java/android/app/
DNotification.java589 public static class Action implements Parcelable { class in Notification
604 private Action() { } in Action() method in Notification.Action
605 private Action(Parcel in) { in Action() method in Notification.Action
615 public Action(int icon, CharSequence title, PendingIntent intent) { in Action() method in Notification.Action
622 public Action clone() { in clone()
623 return new Action( in clone()
644 public static final Parcelable.Creator<Action> CREATOR
645 = new Parcelable.Creator<Action>() {
646 public Action createFromParcel(Parcel in) {
647 return new Action(in);
[all …]
/frameworks/base/policy/src/com/android/internal/policy/impl/
DGlobalActions.java91 private ArrayList<Action> mItems;
94 private Action mSilentModeAction;
236 mItems = new ArrayList<Action>(); in createDialog()
365 private void addUsersToMenu(ArrayList<Action> items) { in addUsersToMenu()
452 final Action action = mItems.get(i); in getCount()
475 public Action getItem(int position) { in getItem()
479 final Action action = mItems.get(i); in getItem()
505 Action action = getItem(position); in getView()
519 private interface Action { interface in GlobalActions
545 private static abstract class SinglePressAction implements Action {
[all …]
/frameworks/support/v4/java/android/support/v4/app/
DNotificationCompat.java122 for (Action action: b.mActions) { in build()
202 ArrayList<Action> mActions = new ArrayList<Action>();
560 mActions.add(new Action(icon, title, intent)); in addAction()
819 public static class Action { class in NotificationCompat
824 public Action(int icon_, CharSequence title_, PendingIntent intent_) { in Action() method in NotificationCompat.Action
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
DFwdLockEngine.cpp273 case Action::DEFAULT: in onCheckRightsStatus()
274 case Action::PLAY: in onCheckRightsStatus()
275 case Action::RINGTONE: in onCheckRightsStatus()
276 case Action::OUTPUT: in onCheckRightsStatus()
277 case Action::PREVIEW: in onCheckRightsStatus()
278 case Action::EXECUTE: in onCheckRightsStatus()
279 case Action::DISPLAY: in onCheckRightsStatus()
283 case Action::TRANSFER: in onCheckRightsStatus()
/frameworks/av/include/drm/
Ddrm_framework_common.h152 class Action {
154 Action();
/frameworks/base/docs/html/design/downloads/
Dindex.jd56 <h2 id="action-bar-icon-pack">Action Bar Icon Pack</h2>
61 <p>Action bar icons are graphic buttons that represent the most important actions people can take
62 within your app. <a href="{@docRoot}design/style/iconography.html">More on Action Bar Iconography</…
76 …<a class="download-button" onClick="_gaq.push(['_trackEvent', 'Design', 'Download', 'Action Bar I…
77 href="{@docRoot}downloads/design/Android_Design_Icons_20130926.zip">Action Bar Icon Pack</a>
/frameworks/base/services/java/com/android/server/am/
DEventLogTags.logtags21 30003 am_new_intent (User|1|5),(Token|1|5),(Task ID|1|5),(Component Name|3),(Action|3),(MIME Type|3…
25 30005 am_create_activity (User|1|5),(Token|1|5),(Task ID|1|5),(Component Name|3),(Action|3),(MIME T…
63 30024 am_broadcast_discard_filter (User|1|5),(Broadcast|1|5),(Action|3),(Receiver Number|1|1),(Broa…
64 30025 am_broadcast_discard_app (User|1|5),(Broadcast|1|5),(Action|3),(Receiver Number|1|1),(App|3)
/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayer.h82 struct Action;
122 List<sp<Action> > mDeferredActions;
DNuPlayer.cpp53 struct NuPlayer::Action : public RefBase { struct in android::NuPlayer
54 Action() {} in Action() function
59 DISALLOW_EVIL_CONSTRUCTORS(Action);
62 struct NuPlayer::SeekAction : public Action {
77 struct NuPlayer::SetSurfaceAction : public Action {
92 struct NuPlayer::ShutdownDecoderAction : public Action {
109 struct NuPlayer::PostMessageAction : public Action {
126 struct NuPlayer::SimpleAction : public Action {
1240 sp<Action> action = *mDeferredActions.begin(); in processDeferredActions()
/frameworks/compile/mclinker/include/mcld/LD/
DResolver.h34 enum Action { enum
DEhFrameReader.h72 typedef bool (*Action)(EhFrame& pEhFrame, typedef
/frameworks/base/docs/html/training/sharing/
Dshareaction.jd1 page.title=Adding an Easy Share Action
24 <li><a href="{@docRoot}guide/topics/ui/actionbar.html">Action Bar</a></li>
125 href="{@docRoot}guide/topics/ui/actionbar.html#ActionProvider">Action Bar</a> guide.</p>
/frameworks/base/docs/html/training/keyboard-input/
Dstyle.jd14 <li><a href="#Action">Specify the Input Method Action</a></li>
118 <h2 id="Action">Specify the Input Method Action</h2>
/frameworks/base/docs/html/guide/topics/resources/
Dmenu-resource.jd120 <dd><em>Keyword</em>. When and how this item should appear as an action item in the Action
125 <tr><td><code>ifRoom</code></td><td>Only place this item in the Action Bar if
130 <tr><td><code>never</code></td><td>Never place this item in the Action Bar.</td></tr>
131 <tr><td><code>always</code></td><td>Always place this item in the Action Bar.
140 <p>See the <a href="{@docRoot}guide/topics/ui/actionbar.html">Action Bar</a> developer
147 <p>See the <a href="{@docRoot}guide/topics/ui/actionbar.html">Action Bar</a> developer
155 <p>See the <a href="{@docRoot}guide/topics/ui/actionbar.html">Action Bar</a> developer
167 <p>See the <a href="{@docRoot}guide/topics/ui/actionbar.html">Action Bar</a> developer
/frameworks/base/docs/html/about/versions/
Dandroid-3.0-highlights.jd72 <p style="margin-top:1em;margin-bottom:.75em;"><strong>Action Bar, for application control</strong>…
74Action Bar, displayed at the top of the screen. The Action Bar is always present when an applicati…
113 …unding arrows to new positions. Users can then select an action from the Action Bar, such as copy …
146 …p lets users select one or more messages, then select an action from the Action Bar, such as movin…
194 <p style="margin-top:1.25em;margin-bottom:.75em;"><strong>Persistent Action Bar</strong></p>
196Action Bar at the top of the screen, which the application can use to give the user quick access t…
260 …orm emulates the Menu key, which is replaced by the overflow menu in the Action Bar in the new UI.…
/frameworks/base/data/keyboards/
DVendor_046d_Product_c216.kl16 # Logitech Dual Action Controller

12345