HomeSort by relevance Sort by last modified time
    Searched full:layout (Results 951 - 975 of 5312) sorted by null

<<31323334353637383940>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleAction.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
19 import com.android.ide.eclipse.adt.internal.editors.layout.LayoutEditor;
UnwrapAction.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
19 import com.android.ide.eclipse.adt.internal.editors.layout.LayoutEditor;
WrapInAction.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
19 import com.android.ide.eclipse.adt.internal.editors.layout.LayoutEditor;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapRefactoringTest.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.refactoring;
29 // Unwrap view with parent, no children - this will unwrap the parent (frame layout)
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
sample2-expected-extract3.xml 6 <include layout="@layout/newlayout3" android:id="@+id/button3_ref" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/button2" android:layout_toRightOf="@+id/button2"/>
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParserTest.java 17 package com.android.ide.eclipse.adt.internal.editors.layout;
57 // We have button, textview, linear layout, relative layout.
74 ElementDescriptor linearDescriptor = new ElementDescriptor("LinearLayout", "Linear Layout",
82 "Relative Layout", "", "",
181 // top level Linear layout
199 // Relative Layout
230 // end of top level linear layout
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/actions/
InvalidateAction.java 34 super("&Invalidate Layout");
39 setToolTipText("Invalidate the layout for the current window");
RequestLayoutAction.java 34 super("Request &Layout");
37 mImage = imageLoader.loadImage("request-layout.png", Display.getDefault()); //$NON-NLS-1$
  /sdk/ide_common/src/com/android/ide/common/rendering/legacy/
LegacyCallback.java 25 * layout lib API.
28 * Layout Libraries.
  /sdk/rule_api/src/com/android/ide/common/api/
InsertType.java 34 * the same layout */
37 /** The view is being inserted here because it was moved from some other layout */
  /cts/tests/tests/widget/src/android/widget/cts/
TableLayoutTest.java 82 activity.setContentView(com.android.cts.stub.R.layout.table_layout_1);
88 activity.setContentView(com.android.cts.stub.R.layout.table_layout_2);
129 tableLayout.layout(0, 0, 200, 300);
209 tableLayout.layout(0, 0, 200, 300);
218 tableLayout.layout(0, 0, 200, 300);
225 tableLayout.layout(0, 0, 200, 300);
232 tableLayout.layout(0, 0, 200, 300);
261 tableLayout.layout(0, 0, 200, 300);
270 tableLayout.layout(0, 0, 200, 300);
277 tableLayout.layout(0, 0, 200, 300)
    [all...]
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader4.java 46 // Load screen layout.
47 setContentView(R.layout.main_screen2);
59 R.layout.list_element, // Our layout resource.
173 public RssCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to){
174 super(context, layout, c, from, to);
  /external/eyes-free/AccessCheck/src/com/android/accessibility/
AccessibilityValidator.java 30 * An object that fetches all Android layout files and manages the testing of
37 /** The root path to scan for Android layout files. */
55 * path on which to search for layout xml files that need
87 * Performs validation of Android layout files and logs errors that have
104 * Firstly, it has a containing (parent) directory of "layout". Secondly, it
117 } else if (directory.getName().toLowerCase().contains("layout")
  /external/icu4c/layout/
Makefile 7 ## Makefile.in for ICU - layout
19 subdir = layout
37 SO_VERSION_DATA = layout.res
192 $(MKINSTALLDIRS) $(DESTDIR)$(includedir)/layout
194 echo "$(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/layout"; \
195 $(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/layout || exit; \
Makefile.in 7 ## Makefile.in for ICU - layout
19 subdir = layout
37 SO_VERSION_DATA = layout.res
192 $(MKINSTALLDIRS) $(DESTDIR)$(includedir)/layout
194 echo "$(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/layout"; \
195 $(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/layout || exit; \
  /external/icu4c/layoutex/
Makefile 7 ## Makefile.in for ICU - layout
70 HEADERS= $(srcdir)/layout/ParagraphLayout.h $(srcdir)/layout/RunArrays.h
123 $(MKINSTALLDIRS) $(DESTDIR)$(includedir)/layout
125 echo "$(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/layout"; \
126 $(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/layout || exit; \
playout.cpp 11 #include "layout/LETypes.h"
12 #include "layout/loengine.h"
13 #include "layout/plruns.h"
14 #include "layout/playout.h"
18 #include "layout/LayoutEngine.h"
19 #include "layout/ParagraphLayout.h"
  /external/webkit/Source/WebCore/editing/
EditCommand.cpp 82 // require a layout, as in <rdar://problem/5658603>. Low level operations, like
83 // RemoveNodeCommand, don't require a layout because the high level operations that
114 // require a layout, as in <rdar://problem/5658603>. Low level operations, like
115 // RemoveNodeCommand, don't require a layout because the high level operations that
137 // require a layout, as in <rdar://problem/5658603>. Low level operations, like
138 // RemoveNodeCommand, don't require a layout because the high level operations that
  /external/webkit/Source/WebKit/chromium/public/
WebWidget.h 64 // Called to layout the WebWidget. This MUST be called before Paint,
66 virtual void layout() = 0;
70 // Layout before calling this method. It is okay to call paint
71 // multiple times once layout has been called, assuming no other
73 // processed, it should be assumed that another call to layout is
79 // GPU to finish rendering before returning. You MUST call Layout
  /frameworks/base/core/java/android/text/method/
BaseKeyListener.java 113 final Layout layout = ((TextView) view).getLayout(); local
114 if (layout != null) {
115 final int line = layout.getLineForOffset(Selection.getSelectionStart(content));
116 final int start = layout.getLineStart(line);
117 final int end = layout.getLineEnd(line);
  /frameworks/base/docs/html/guide/tutorials/views/
hello-autocomplete.jd 12 <li>Open the layout file.
39 setContentView(R.layout.main);
43 android.R.layout.simple_dropdown_item_1line, COUNTRIES);
47 <p>Here, we create an AutoCompleteTextView from our layout. We then
49 layout item to each entry in the <code>COUNTRIES</code> array (which we'll add next).
111 <li>{@link android.R.layout}</li>
  /packages/apps/Email/res/layout/
message_view_fragment.xml 54 <include layout="@layout/message_view_header_upper" />
64 <include layout="@layout/message_view_subheader" />
176 <include layout="@layout/message_view_invitation" />
  /packages/apps/VideoEditor/src/com/android/videoeditor/
ExportOptionsDialog.java 65 // Set the layout
68 final View myView = vi.inflate(R.layout.export_options_dialog_view, null);
112 context, android.R.layout.simple_spinner_item);
113 sizeAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
125 android.R.layout.simple_spinner_item);
126 qualityAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
LayoutCreatorDialog.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.configuration;
31 import org.eclipse.swt.layout.GridData;
32 import org.eclipse.swt.layout.GridLayout;
76 // parent's layout is a GridLayout as specified in the javadoc.
113 mStatusComposite.layout();
138 mConfig.getFolderName(ResourceFolderType.LAYOUT), mFileName),
  /sdk/layoutlib_api/src/com/android/ide/common/rendering/api/
Bridge.java 30 * Entry point of the Layout Library. Extensions of this class provide a method to compute
31 * and render a layout.
38 * Returns the API level of the layout library.
42 * <p/>All Layout libraries based on {@link Bridge} return at minimum an API level of 5.
88 * Starts a layout session by inflating and rendering it. The method returns a
152 * @return the baseline value or -1 if not applicable to the view object or if this layout

Completed in 287 milliseconds

<<31323334353637383940>>