HomeSort by relevance Sort by last modified time
    Searched full:layout (Results 26 - 50 of 5207) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu4c/test/letest/
letsutil.h 21 #include "layout/LETypes.h"
22 #include "layout/LEScripts.h"
23 #include "layout/LayoutEngine.h"
24 #include "layout/LELanguages.h"
  /external/webkit/LayoutTests/http/tests/appcache/resources/
fallbacknamespace-networknamespace-existing-resource.html 1 <!-- Used in the online-fallback-layering.html layout test. -->
  /frameworks/base/core/java/android/view/
package.html 4 screen layout and interaction with the user.
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
broken2-expected-completion21.txt 6 "@layout/"
completionvalues1-expected-completion25.txt 6 @layout/
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/
TreeViewPerspective.java 34 public void createInitialLayout(IPageLayout layout) {
35 layout.setEditorAreaVisible(false);
37 String editorArea = layout.getEditorArea();
40 folder = layout.createFolder("properties", IPageLayout.LEFT, 0.10f, editorArea); //$NON-NLS-1$
44 folder = layout.createFolder("main", IPageLayout.RIGHT, 0.24f, "properties"); //$NON-NLS-1$ //$NON-NLS-2$
47 folder = layout.createFolder("panel-top", IPageLayout.RIGHT, 0.7f, "main"); //$NON-NLS-1$ //$NON-NLS-2$
51 folder = layout.createFolder("panel-bottom", IPageLayout.BOTTOM, 0.5f, "panel-top"); //$NON-NLS-1$ //$NON-NLS-2$
54 layout.addShowViewShortcut(DeviceSelectorView.ID);
55 layout.addShowViewShortcut(PropertyView.ID);
56 layout.addShowViewShortcut(TreeOverviewView.ID)
    [all...]
PixelPerfectPespective.java 34 public void createInitialLayout(IPageLayout layout) {
35 layout.setEditorAreaVisible(false);
37 String editorArea = layout.getEditorArea();
40 folder = layout.createFolder("tree", IPageLayout.LEFT, 0.25f, editorArea); //$NON-NLS-1$
44 folder = layout.createFolder("overview", IPageLayout.RIGHT, 0.4f, editorArea); //$NON-NLS-1$
47 folder = layout.createFolder("main", IPageLayout.RIGHT, 0.35f, editorArea); //$NON-NLS-1$
51 layout.addShowViewShortcut(DeviceSelectorView.ID);
52 layout.addShowViewShortcut(PixelPerfectTreeView.ID);
53 layout.addShowViewShortcut(PixelPerfectLoupeView.ID);
54 layout.addShowViewShortcut(PixelPerfectView.ID)
    [all...]
  /frameworks/base/docs/html/resources/articles/
layout-tricks-reuse.jd 1 page.title=Layout Tricks: Creating Reusable UI Components
18 <p>In Android XML layout files, each tag is mapped to an actual class instance
26 href="{@docRoot}resources/articles/layout-tricks-merge.html">Merging Layouts</a>
30 suggests; it includes another XML layout. Using this tag is straightforward as
43 &lt;include android:id="&#64;+id/cell1" layout="@layout/workspace_screen" /&gt;
44 &lt;include android:id="&#64;+id/cell2" layout="@layout/workspace_screen" /&gt;
45 &lt;include android:id="&#64;+id/cell3" layout="@layout/workspace_screen" /&gt
    [all...]
  /frameworks/base/docs/html/resources/tutorials/notepad/codelab/
NotepadCodeLab.zip 
  /cts/tests/src/android/theme/cts/
ThemeTests.java 62 * 1. Create a layout file for the test you wish to run.<br>
64 * that will modify the root view of your created layout. Set to null if you do not want
65 * to modify the view from the layout version.<br>
70 new ThemeTestInfo(R.layout.button, null, "button"),
71 new ThemeTestInfo(R.layout.button, new ViewPressedModifier(), "button_pressed"),
72 new ThemeTestInfo(R.layout.toggle_button, null, "toggle_button"),
73 new ThemeTestInfo(R.layout.toggle_button_checked, null, "toggle_button_checked"),
74 new ThemeTestInfo(R.layout.checkbox, null, "checkbox"),
75 new ThemeTestInfo(R.layout.checkbox_checked, null, "checkbox_checked"),
76 new ThemeTestInfo(R.layout.radiobutton, null, "radiobutton")
    [all...]
  /frameworks/base/core/tests/coretests/res/layout/
include_tag.xml 28 layout="@layout/include_button" />
31 layout="@layout/include_button"
37 layout="@layout/include_button"
42 layout="@layout/include_button_with_size"
  /sdk/layoutopt/libs/uix/src/resources/rules/
TooManyViews.rule 3 // Description: Checks whether the layout has too many views.
10 description: "This layout has too many views: ${size} views, it should have <= 80!"]
  /frameworks/base/core/java/android/text/method/
ArrowKeyMovementMethod.java 20 import android.text.Layout;
38 private static int getCurrentLineTop(Spannable buffer, Layout layout) {
39 return layout.getLineTop(layout.getLineForOffset(Selection.getSelectionEnd(buffer)));
70 final Layout layout = widget.getLayout(); local
72 return Selection.extendLeft(buffer, layout);
74 return Selection.moveLeft(buffer, layout);
80 final Layout layout = widget.getLayout() local
90 final Layout layout = widget.getLayout(); local
100 final Layout layout = widget.getLayout(); local
110 final Layout layout = widget.getLayout(); local
134 final Layout layout = widget.getLayout(); local
178 final Layout layout = widget.getLayout(); local
188 final Layout layout = widget.getLayout(); local
    [all...]
  /external/chromium/chrome/browser/ui/views/
database_info_view.cc 16 #include "views/layout/grid_layout.h"
17 #include "views/layout/layout_constants.h"
103 GridLayout* layout = new GridLayout(this);
104 layout->SetInsets(kDatabaseInfoViewInsetSize,
108 SetLayoutManager(layout);
111 views::ColumnSet* column_set = layout->AddColumnSet(three_column_layout_id);
118 layout->StartRow(0, three_column_layout_id);
119 layout->AddView(name_label);
120 layout->AddView(name_value_field_);
121 layout->StartRow(0, three_column_layout_id)
    [all...]
login_view.cc 16 #include "views/layout/grid_layout.h"
17 #include "views/layout/layout_constants.h"
41 // Initialize the Grid Layout Manager used for this dialog box.
42 GridLayout* layout = GridLayout::CreatePanel(this); local
43 SetLayoutManager(layout);
49 layout->AddColumnSet(single_column_view_set_id);
55 column_set = layout->AddColumnSet(labels_column_set_id);
64 layout->StartRow(0, single_column_view_set_id);
65 layout->AddView(message_label_);
67 layout->AddPaddingRow(0, views::kUnrelatedControlLargeVerticalSpacing)
    [all...]
  /frameworks/base/docs/html/guide/developing/tools/
layoutopt.jd 7 layouts and layout hierarchies of your applications.<p>
16 <p>To run <code>layoutopt</code> against a given list of layout resources:</p>
22 <pre>$ layoutopt res/layout-land</pre>
23 <pre>$ layoutopt res/layout/main.xml res/layout-land/main.xml</pre>
  /frameworks/base/core/java/android/widget/
package.html 6 use your widget in layout XML, there are two additional files for you to
11 behavior of the widget. If you can instantiate the object from layout XML,
13 values from the layout XML file.</li>
17 another in their layout XML.</li>
18 <li><b>Layout XML</b> [<em>optional</em>]- An optional XML file inside
19 res/layout/ that describes the layout of your widget. You could also do
22 ApiDemos sample application has an example of creating a custom layout XML
28 <li><strong>res/layout/custom_view_1.xml</strong> - Layout
    [all...]
  /packages/apps/Launcher2/res/layout-sw600dp/
workspace.xml 25 <include android:id="@+id/cell1" layout="@layout/workspace_screen" />
26 <include android:id="@+id/cell2" layout="@layout/workspace_screen" />
27 <include android:id="@+id/cell3" layout="@layout/workspace_screen" />
28 <include android:id="@+id/cell4" layout="@layout/workspace_screen" />
29 <include android:id="@+id/cell5" layout="@layout/workspace_screen" /
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
IgnoredLayoutRule.java 17 package com.android.ide.common.layout;
24 * An ignored layout is a layout that should not be treated as a layout by the
25 * visual editor (usually because the widget extends a layout class we recognize
36 // Do nothing; this layout rule corresponds to a layout that
37 // should not be handled as a layout by the visual editor - usually
38 // because some widget is extending a layout for implementation purposes
39 // but does not want to expose configurability of the base layout in th
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextGammaActivity.java 37 final LinearLayout layout = new LinearLayout(this); local
38 layout.setOrientation(LinearLayout.VERTICAL);
41 layout.addView(gamma, new LinearLayout.LayoutParams(
45 setContentView(layout);
47 layout.post(new Runnable() {
58 layout.addView(image, new LinearLayout.LayoutParams(
77 inflater.inflate(R.layout.text_large, this, true);
78 inflater.inflate(R.layout.text_medium, this, true);
79 inflater.inflate(R.layout.text_small, this, true);
88 final LinearLayout layout = new LinearLayout(this) local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
FragmentMenu.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.gle2;
18 import static com.android.ide.common.layout.LayoutConstants.ANDROID_LAYOUT_PREFIX;
19 import static com.android.ide.common.layout.LayoutConstants.ANDROID_URI;
20 import static com.android.ide.common.layout.LayoutConstants.ATTR_CLASS;
21 import static com.android.ide.common.layout.LayoutConstants.ATTR_NAME;
22 import static com.android.ide.common.layout.LayoutConstants.LAYOUT_PREFIX;
23 import static com.android.ide.eclipse.adt.internal.editors.layout.gle2.LayoutMetadata.KEY_FRAGMENT_LAYOUT;
27 import com.android.ide.eclipse.adt.internal.editors.layout.LayoutEditor;
28 import com.android.ide.eclipse.adt.internal.editors.layout.uimodel.UiViewElementNode;
57 * Fragment context menu allowing a layout to be chosen for previewing in the fragment frame
137 String layout; local
199 String layout = metadata.getProperty((IDocument) null, node, local
213 String layout = getFragmentLayout(node.getXmlNode()); local
296 String layout = getSelectedLayout(); local
    [all...]
  /packages/apps/Mms/src/com/android/mms/layout/
LayoutParameters.java 18 package com.android.mms.layout;
33 * Get the width of current layout.
37 * Get the height of current layout.
41 * Get the width of the image region of current layout.
45 * Get the height of the text region of current layout.
49 * Get the type of current layout.
53 * Get the type description of current layout.
  /development/samples/ApiDemos/res/layout-h550dp/
resources_height.xml 25 <include layout="@layout/resources_width" />
30 <include layout="@layout/resources_width" />
35 <include layout="@layout/resources_width" />
40 <include layout="@layout/resources_width" />
45 <include layout="@layout/resources_width" /
    [all...]
  /development/samples/ApiDemos/res/layout-sw600dp/
resources_smallest_width_inner.xml 25 <include layout="@layout/resources_smallest_width_row" />
30 <include layout="@layout/resources_smallest_width_row" />
35 <include layout="@layout/resources_smallest_width_row" />
40 <include layout="@layout/resources_smallest_width_row" />
45 <include layout="@layout/resources_smallest_width_row" /
    [all...]
  /external/icu4c/samples/layout/
pflow.h 11 #include "layout/LETypes.h"
13 #include "layout/plruns.h"
14 #include "layout/playout.h"

Completed in 677 milliseconds

12 3 4 5 6 7 8 91011>>