Home
last modified time | relevance | path

Searched refs:selected (Results 1 – 25 of 143) sorted by relevance

123456

/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DSmsBroadcastConfigInfo.java48 int toScheme, boolean selected) { in SmsBroadcastConfigInfo() argument
53 mSelected = selected; in SmsBroadcastConfigInfo()
115 public void setSelected(boolean selected) { in setSelected() argument
116 mSelected = selected; in setSelected()
/frameworks/base/core/tests/coretests/src/android/widget/listview/
DListItemsExpandOnSelection.java71 public void setSelected(boolean selected) { in setSelected() argument
72 super.setSelected(selected); in setSelected()
73 if (selected) { in setSelected()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
DCdmaSmsBroadcastConfigInfo.java46 int language, boolean selected) { in CdmaSmsBroadcastConfigInfo() argument
50 mSelected = selected; in CdmaSmsBroadcastConfigInfo()
/frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
DListOfItemsTallerThanScreenTest.java183 View selected = mListView.getSelectedView(); in getNumDownPressesToScrollDownAcrossSelected() local
186 selected.getBottom() > realBottom); in getNumDownPressesToScrollDownAcrossSelected()
188 selected.getTop() < realBottom); in getNumDownPressesToScrollDownAcrossSelected()
190 int pixelsOffScreen = selected.getBottom() - realBottom; in getNumDownPressesToScrollDownAcrossSelected()
/frameworks/ex/chips/src/com/android/ex/chips/recipientchip/
DSimpleRecipientChip.java47 public void setSelected(final boolean selected) { in setSelected() argument
48 mSelected = selected; in setSelected()
DVisibleRecipientChip.java41 public void setSelected(final boolean selected) { in setSelected() argument
42 mDelegate.setSelected(selected); in setSelected()
DInvisibleRecipientChip.java40 public void setSelected(final boolean selected) { in setSelected() argument
41 mDelegate.setSelected(selected); in setSelected()
DBaseRecipientChip.java30 void setSelected(boolean selected); in setSelected() argument
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DYearPickerView.java117 boolean selected = mController.getSelectedDay().year == year; in getView()
118 v.drawIndicator(selected); in getView()
119 if (selected) { in getView()
/frameworks/base/docs/html/design/patterns/
Dselection.jd24 contextual actions and selection management functions for selected data into a new element called
40 is selected. It appears after the user long presses on a selectable data item.</p>
75 the selection. Actions that apply to a single selected data item don't necessarily apply to multiple
76 selected data items of the same kind.</p>
83 Adjusting actions in the CAB as additional items are selected.
/frameworks/base/docs/html/guide/practices/ui_guidelines/
Dicon_design_tab.jd45 multi-tab interface. Each tab icon has two states: unselected and selected.</p>
85 <p>Tab icons should have two states: unselected and selected. To provide icons
118 selected and unselected icon drawables. For example, below is the code
124 &lt;!-- selected state --&gt;
232 <p>Tab icons should have two states: selected and unselected.</p>
257 …ocRoot}images/icon_design/tab_style_selected.png" alt="A view of effects for selected tab icons."/>
261 <p><strong>Figure 3. </strong>Style and effects for selected tab icons.</p>
346 selected tab icon structure." />
351 selected state. Icon size is 32x32.</p>
361 <p>Unselected tab icons look just like the selected tab icons, but with a
[all …]
/frameworks/base/docs/html/guide/topics/ui/controls/
Dspinner.jd24 shows its currently selected value. Touching the spinner displays a dropdown menu with all other
89 this method is a layout resource that defines how the selected choice appears in the
106 receives an on-item-selected event.</p>
119 // An item was selected. You can retrieve the selected item using
/frameworks/opt/colorpicker/src/com/android/colorpicker/
DColorPickerPalette.java141 private void setSwatchDescription(int rowNumber, int index, int rowElements, boolean selected, in setSwatchDescription() argument
154 if (selected) { in setSwatchDescription()
/frameworks/base/docs/html/training/secure-file-sharing/
Dshare-file.jd43 application to let users select a file from the server app and then receive the selected file's
58 return a result to the client app, in the form of a content URI for the file the user selected.
137 Once a user selects a shared file, your application must determine what file was selected and
141 onItemClick()}, in which you can get the selected file.
145 {@link java.io.File} object for the file name of the selected file and pass it as an argument to
157 The following snippet shows you how to detect the selected file and get a content URI for it:
175 * Get a File for the selected file name.
192 "The selected file can't be shared: " +
/frameworks/base/docs/html/tools/debugging/
Ddebugging-projects-cmdline.jd60 you can use a default port 8700 to connect to whatever application is currently selected on the
64 and allowing you to suspend them, inspect their state, and set breakpoints. If you selected "Wait
69 system to kill the selected application if it is currently running. You can use this to kill your
Ddebugging-devtools.jd36 <dd>Blocks the selected application from loading until a debugger attaches. This way you can
39 When you change this option, any currently running instances of the selected application will
40 be killed. In order to check this box, you must have selected a debug application as described
/frameworks/base/docs/html/training/basics/intents/
Dresult.jd99 // The Intent's data Uri identifies which contact was selected.
109 contact the user selected.</p>
115 versions) always returns a result with the content URI that identifies the selected contact, and the
126 result data to get the phone number from the selected contact:</p>
135 // Get the URI that points to the selected contact
/frameworks/support/v4/ics/android/support/v4/view/accessibility/
DAccessibilityNodeInfoCompatIcs.java204 public static void setSelected(Object info, boolean selected) { in setSelected() argument
205 ((AccessibilityNodeInfo) info).setSelected(selected); in setSelected()
/frameworks/base/docs/html/tools/help/
Dsystrace.jd201 <td>Show grid at the start of the currently selected task.</td>
207 <td>Show grid at the end of the currently selected task.</td>
213 <td>Select the next event on the currently selected timeline.</td>
219 <td>Select the previous event on the currently selected timeline.</td>
/frameworks/base/core/java/com/android/internal/widget/
DScrollingTabContainerView.java386 public void setSelected(boolean selected) { in setSelected() argument
387 final boolean changed = (isSelected() != selected); in setSelected()
388 super.setSelected(selected); in setSelected()
389 if (changed && selected) { in setSelected()
/frameworks/base/docs/html/training/basics/fragments/
Dcommunicating.jd108 // The user selected the headline of an article from the HeadlinesFragment
134 // The user selected the headline of an article from the HeadlinesFragment
148 // Create fragment and give it an argument for the selected article
/frameworks/base/docs/html/sdk/installing/
Dmigrate.jd33 <p>Your selected project remains in the same location but now contains a {@code build.gradle}
44 <li>In the following dialog, leave <strong>Use gradle wrapper</strong> selected and click
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DIccSmsInterfaceManager.java652 protected void addRange(int startId, int endId, boolean selected) { in addRange() argument
654 SMS_CB_CODE_SCHEME_MIN, SMS_CB_CODE_SCHEME_MAX, selected)); in addRange()
692 protected void addRange(int startId, int endId, boolean selected) { in addRange() argument
694 1, selected)); in addRange()
DIntRangeManager.java599 protected boolean tryAddRanges(int startId, int endId, boolean selected) { in tryAddRanges() argument
604 addRange(startId, endId, selected); // adds to mConfigList in tryAddRanges()
661 protected abstract void addRange(int startId, int endId, boolean selected); in addRange() argument
/frameworks/support/v4/java/android/support/v4/view/accessibility/
DAccessibilityNodeInfoCompat.java78 public void setSelected(Object info, boolean selected); in setSelected() argument
366 public void setSelected(Object info, boolean selected) { in setSelected() argument
643 public void setSelected(Object info, boolean selected) { in setSelected() argument
644 AccessibilityNodeInfoCompatIcs.setSelected(info, selected); in setSelected()
1646 public void setSelected(boolean selected) { in setSelected() argument
1647 IMPL.setSelected(mInfo, selected); in setSelected()

123456