HomeSort by relevance Sort by last modified time
    Searched defs:chooser (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /frameworks/base/core/java/android/service/chooser/
ChooserTargetService.java 18 package android.service.chooser;
38 * made at the moment the chooser is invoked, including but not limited to user time
41 * are shown in the list of intent handlers shown in the system chooser or resolver.</p>
51 * &lt;action android:name="android.service.chooser.ChooserTargetService" />
63 * <code>android.service.chooser.chooser_target_service</code> and a value corresponding to
71 * &lt;meta-data android:name="android.service.chooser.chooser_target_service"
87 public static final String SERVICE_INTERFACE = "android.service.chooser.ChooserTargetService";
93 public static final String META_DATA_NAME = "android.service.chooser.chooser_target_service";
ChooserTarget.java 18 package android.service.chooser;
31 * {@link android.service.chooser.ChooserTargetService}.
33 * <p>A chooser target represents a specific deep link target into an application exposed
39 * <p>Creators of chooser targets should consult the relevant design guidelines for the type
76 * Construct a deep link target for presentation by a chooser UI.
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationTest.java 44 ConfigurationChooser chooser = null; local
45 return constructor.newInstance(chooser);
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
MediaPicker.java 104 * Called when a new media chooser is selected.
138 /** The currently selected chooser */
144 /** The linear layout that holds the icons to select individual chooser tabs */
229 for (final MediaChooser chooser : mChoosers) {
230 chooser.onCreateTabButton(inflater, mTabStrip);
231 final boolean enabled = (chooser.getSupportedMediaTypes() & mSupportedMediaTypes) !=
233 final ImageButton tabButton = chooser.getTabButton();
280 for (final MediaChooser chooser : mEnabledChoosers) {
281 chooser.onPause();
290 for (final MediaChooser chooser : mEnabledChoosers)
    [all...]
  /external/proguard/src/proguard/gui/
ClassPathPanel.java 42 private final JFileChooser chooser; field in class:ClassPathPanel
57 chooser = new JFileChooser("");
58 chooser.setMultiSelectionEnabled(true);
59 chooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
60 chooser.addChoosableFileFilter(
63 chooser.setApproveButtonText(msg("ok"));
93 chooser.setDialogTitle(msg("addJars"));
94 chooser.setSelectedFile(null);
95 chooser.setSelectedFiles(null);
97 int returnValue = chooser.showOpenDialog(owner)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
MarginChooser.java 59 * Constructs a new margin chooser dialog.
215 // Button pressed - open resource chooser
220 // Open a resource chooser dialog for specified resource type.
221 ResourceChooser chooser = ResourceChooser.create(mEditor, ResourceType.DIMEN) local
223 if (chooser.open() == Window.OK) {
224 text.setText(chooser.getCurrentResource());
ResourceChooser.java 133 * Label used to show the resolved value in the resource chooser. Only shown
142 * Creates a Resource Chooser dialog.
168 setTitle("Resource Chooser");
187 ResourceChooser chooser = create(project, type, targetData, parent); local
194 chooser.setResourceResolver(editor.getResourceResolver());
195 chooser.setShowValueText(true);
197 chooser.setResourceResolver(editor.getResourceResolver());
200 chooser.setPreviewHelper(new ResourcePreviewHelper(chooser, editor));
201 return chooser;
942 ResourceChooser chooser = create(graphicalEditor, type). local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
RenderPreviewList.java 148 ConfigurationChooser chooser = canvas.getEditorDelegate().getGraphicalEditor() local
151 Configuration chooserConfig = chooser.getConfiguration();
153 Configuration configuration = Configuration.create(chooser);
LayoutActionBar.java 711 ConfigurationChooser chooser = mEditor.getConfigurationChooser(); local
712 Configuration config = chooser.getConfiguration();
720 ResolutionChooserDialog dialog = new ResolutionChooserDialog(chooser.getShell());
RenderService.java 123 ConfigurationChooser chooser = editor.getConfigurationChooser(); local
124 Configuration config = chooser.getConfiguration();
RenderPreview.java 298 * forked layout meaning that the file is the one used in the chooser
373 ConfigurationChooser chooser = mManager.getChooser(); local
375 if (mAlternateInput != null && chooser.isBestMatchFor(mAlternateInput, config)) {
380 IFile editedFile = chooser.getEditedFile();
382 if (!chooser.isBestMatchFor(editedFile, config)) {
383 ProjectResources resources = chooser.getResources();
    [all...]
PaletteControl.java 634 ConfigurationChooser chooser = mEditor.getConfigurationChooser(); local
635 int dpi = chooser.getConfiguration().getDensity().getDpiValue();
    [all...]
RenderPreviewManager.java 140 * Returns the associated chooser
142 * @return the associated chooser
680 ConfigurationChooser chooser = getChooser(); local
681 String name = chooser.getConfiguration().getDisplayName();
696 Configuration configuration = Configuration.copy(chooser.getConfiguration());
746 ConfigurationChooser chooser = getChooser(); local
747 Configuration parent = chooser.getConfiguration();
753 createLocaleVariation(chooser, parent);
762 createStateVariation(chooser, parent);
765 createRenderTargetVariation(chooser, parent)
818 ConfigurationChooser chooser = getChooser(); local
930 ConfigurationChooser chooser = getChooser(); local
967 ConfigurationChooser chooser = getChooser(); local
1041 ConfigurationChooser chooser = getChooser(); local
1074 ConfigurationChooser chooser = getChooser(); local
1266 ConfigurationChooser chooser = getChooser(); local
1284 ConfigurationChooser chooser = editor.getConfigurationChooser(); local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
ByodFlowTestActivity.java 336 Intent chooser = Intent.createChooser(intent, local
342 chooser);
    [all...]
ByodHelperActivity.java 535 Intent chooser = Intent.createChooser(toSend, local
537 startActivity(chooser);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 204 JFileChooser chooser = new JFileChooser(); local
205 chooser.setFileFilter(new PngFileFilter());
206 int choice = chooser.showOpenDialog(this);
208 return new OpenOverlayTask(chooser.getSelectedFile());
Workspace.java 1044 JFileChooser chooser = new JFileChooser(); local
1085 JFileChooser chooser = new JFileChooser(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
Configuration.java 165 * @param chooser the associated chooser
167 protected Configuration(@NonNull ConfigurationChooser chooser) {
168 mConfigChooser = chooser;
172 * Sets the associated configuration chooser
174 * @param chooser the chooser
176 void setChooser(@NonNull ConfigurationChooser chooser) {
182 mConfigChooser = chooser;
186 * Gets the associated configuration chooser
218 ConfigurationChooser chooser = base.getChooser(); local
    [all...]
ConfigurationChooser.java 185 * @param client the client embedding this configuration chooser
334 * chooser
569 * Resets the configuration chooser to reflect the given file configuration. This is
572 * configuration chooser must be switched to a landscape layout. This method will
581 * filtering the configuration chooser to only show options in the outer configuration
1472 ConfigurationChooser chooser = local
    [all...]
  /prebuilts/sdk/tools/darwin/lib/
shrinkedAndroid.jar 
  /prebuilts/sdk/tools/linux/lib/
shrinkedAndroid.jar 
  /prebuilts/sdk/tools/windows/lib/
shrinkedAndroid.jar 
  /prebuilts/devtools/tools/lib/
draw9patch.jar 
  /prebuilts/gradle-plugin/com/android/tools/draw9patch/24.4.0-beta3/
draw9patch-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/draw9patch/24.4.0-beta6/
draw9patch-24.4.0-beta6.jar 

Completed in 550 milliseconds

1 2 3 4