HomeSort by relevance Sort by last modified time
    Searched full:layout (Results 101 - 125 of 3041) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/apps/Email/res/layout/
mailbox_list.xml 23 <include layout="@layout/list_title" />
24 <include layout="@layout/connection_error_banner" />
  /packages/apps/Music/res/layout-land-finger/
media_picker_activity.xml 23 <include layout="@layout/sd_error" />
25 <include layout="@layout/buttonbar" />
media_picker_activity_expanding.xml 23 <include layout="@layout/sd_error" />
25 <include layout="@layout/buttonbar" />
  /packages/apps/PackageInstaller/res/layout/
install_start.xml 24 layout="@layout/app_details"
27 layout="@layout/install_confirm"
  /packages/apps/Protips/res/layout/
widget.xml 25 <include layout="@layout/droid" />
26 <include layout="@layout/bubble" />
  /packages/apps/Protips/res/layout-land/
widget.xml 25 <include layout="@layout/droid" />
26 <include layout="@layout/bubble" />
  /packages/apps/Settings/res/layout/
running_service_details_service.xml 33 layout="@layout/running_processes_item"
45 layout="@layout/two_buttons_panel"
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ViewClassInfo.java 21 * Information needed to represent a View or ViewGroup (aka Layout) item
22 * in the layout hierarchy, as extracted from the main android.jar and the
26 /** Is this a layout class (i.e. ViewGroup) or just a view? */
42 /** ViewLayout class info owning this layout data */
46 /** Layout Data Attributes for layout classes. Can be empty but not null. */
61 /** Returns the ViewLayout class info enclosing this layout data. Cannot null. */
79 /** Layout data info for a layout class. Null for all non-layout classes and alway
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/templates/
java_file.template 11 setContentView(R.layout.main);
  /sdk/templates/
java_file.template 13 setContentView(R.layout.main);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
InternalSelectionFocus.java 46 final LinearLayout layout = new LinearLayout(this); local
47 layout.setOrientation(LinearLayout.HORIZONTAL);
48 layout.setLayoutParams(new ViewGroup.LayoutParams(
58 layout.addView(leftColumn);
63 layout.addView(middleColumn);
68 layout.addView(rightColumn);
70 setContentView(layout);
  /external/qemu/android/skin/
file.h 19 /** Layout
84 #define SKIN_LAYOUT_LOOP_LOCS(layout,loc) \
86 SkinLocation* __loc = (layout)->locations; \
96 extern SkinDisplay* skin_layout_get_display( SkinLayout* layout );
98 extern SkinRotation skin_layout_get_dpad_rotation( SkinLayout* layout );
107 #define SKIN_FILE_LOOP_LAYOUTS(file,layout) \
112 SkinLayout* layout = __layout;
  /packages/apps/Gallery/src/com/android/camera/
ActionMenuButton.java 25 import android.text.Layout;
75 final Layout layout = getLayout(); local
80 rect.set(left + layout.getLineLeft(0) - PADDING_H,
81 top + layout.getLineTop(0) - PADDING_V,
82 Math.min(left + layout.getLineRight(0) + PADDING_H,
84 top + layout.getLineBottom(0) + PADDING_V);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
MatchingStrategy.java 17 package com.android.ide.eclipse.adt.internal.editors.layout;
31 * Matching strategy for the Layout Editor. This is used to open all configurations of a layout
37 // first check that the file being opened is a layout file.
41 // get the IFile object and check it's in one of the layout folders.
45 // if it's a layout, we know check the name of the fileInput against the name of the
47 if (resFolder != null && resFolder.getType() == ResourceFolderType.LAYOUT) {
  /frameworks/base/core/java/android/text/style/
IconMarginSpan.java 24 import android.text.Layout;
45 boolean first, Layout layout) {
47 int itop = layout.getLineTop(layout.getLineForOffset(st));
  /frameworks/base/docs/html/guide/topics/ui/notifiers/
toasts.jd 12 <li>You can customize the toast layout to include images</li>
67 toast differently or even use your own layout instead of a simple text message.
95 <p>If a simple text message isn't enough, you can create a customized layout for your
96 toast notification. To create a custom layout, define a View layout,
100 <p>For example, you can create the layout for the toast visible in the screenshot to the right
125 ID to inflate the layout from the XML, as shown here:</p>
129 View layout = inflater.inflate(R.layout.toast_layout,
132 ImageView image = (ImageView) layout.findViewById(R.id.image)
    [all...]
  /frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
ButtonActivity.java 68 LinearLayout layout = new LinearLayout(this); local
69 layout.setOrientation(LinearLayout.VERTICAL);
70 layout.addView(myButton);
71 setContentView(layout);
72 mRootView = layout;
OneEditTextActivityNotSelected.java 48 LinearLayout layout = new LinearLayout(this); local
49 layout.setOrientation(LinearLayout.VERTICAL);
58 layout.addView(button);
59 layout.addView(editText);
61 ((ScrollView) mRootView).addView(layout);
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
LayoutInflater_Delegate.java 56 final int layout = attrs.getAttributeResourceValue(null, "layout", 0); local
57 if (layout == 0) {
58 final String value = attrs.getAttributeValue(null, "layout");
60 throw new InflateException("You must specifiy a layout in the"
61 + " include tag: <include layout=\"@layout/layoutID\" />");
63 throw new InflateException("You must specifiy a valid layout "
64 + "reference. The layout ID " + value + " is not valid.");
68 thisInflater.getContext().getResources().getLayout(layout);
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
LayoutModel.java 20 import com.android.mms.layout.LayoutManager;
21 import com.android.mms.layout.LayoutParameters;
49 // Create default root-layout and regions.
84 throw new IllegalStateException("Root-Layout uninitialized.");
93 throw new IllegalStateException("Root-Layout uninitialized.");
140 * Get all regions except root-layout. The result is READ-ONLY.
184 public void changeTo(int layout) {
186 throw new IllegalStateException("Root-Layout uninitialized.");
193 if (mLayoutType != layout) {
194 switch (layout) {
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewTreeObserverTest.java 61 layout(R.layout.viewtreeobserver_layout);
68 private void layout(final int layoutId) { method in class:ViewTreeObserverTest
84 final LinearLayout layout = (LinearLayout) mActivity.findViewById(R.id.linearlayout); local
88 mViewTreeObserver = layout.getViewTreeObserver();
95 layout.requestChildFocus(lv1, lv2);
110 final LinearLayout layout = local
112 mViewTreeObserver = layout.getViewTreeObserver();
128 final LinearLayout layout = (LinearLayout) mActivity.findViewById(R.id.linearlayout); local
129 mViewTreeObserver = layout.getViewTreeObserver()
200 final LinearLayout layout = (LinearLayout) mActivity.findViewById(R.id.linearlayout); local
217 final LinearLayout layout = (LinearLayout) mActivity.findViewById(R.id.linearlayout); local
234 final LinearLayout layout = (LinearLayout) mActivity.findViewById(R.id.linearlayout); local
247 final LinearLayout layout = (LinearLayout) mActivity.findViewById(R.id.linearlayout); local
270 final LinearLayout layout = (LinearLayout) mActivity.findViewById(R.id.linearlayout); local
305 final LinearLayout layout = (LinearLayout) mActivity.findViewById(R.id.linearlayout); local
    [all...]
  /frameworks/base/core/java/android/text/method/
Touch.java 19 import android.text.Layout;
20 import android.text.Layout.Alignment;
37 public static void scrollTo(TextView widget, Layout layout, int x, int y) {
40 int top = layout.getLineForVertical(y);
41 int bottom = layout.getLineForVertical(y + widget.getHeight() -
49 left = (int) Math.min(left, layout.getLineLeft(i));
50 right = (int) Math.max(right, layout.getLineRight(i));
53 a = layout.getParagraphAlignment(i);
79 public static int getMaxScrollX(TextView widget, Layout layout, int y)
165 Layout layout = widget.getLayout(); local
    [all...]
  /external/icu4c/layoutex/
layoutex.vcproj 439 RelativePath=".\layout\ParagraphLayout.h"
446 CommandLine="copy &quot;$(InputPath)&quot; ..\..\include\layout&#x0D;&#x0A;"
447 Outputs="..\..\include\layout\$(InputFileName)"
455 CommandLine="copy &quot;$(InputPath)&quot; ..\..\include\layout&#x0D;&#x0A;"
456 Outputs="..\..\include\layout\$(InputFileName)"
464 CommandLine="copy &quot;$(InputPath)&quot; ..\..\include\layout&#x0D;&#x0A;"
465 Outputs="..\..\include\layout\$(InputFileName)"
473 CommandLine="copy &quot;$(InputPath)&quot; ..\..\include\layout&#x0D;&#x0A;"
474 Outputs="..\..\include\layout\$(InputFileName)"
479 RelativePath=".\layout\playout.h
    [all...]
  /frameworks/base/core/java/android/widget/
ResourceCursorTreeAdapter.java 42 * @param collapsedGroupLayout resource identifier of a layout file that
44 * @param expandedGroupLayout resource identifier of a layout file that
46 * @param childLayout resource identifier of a layout file that defines the
48 * @param lastChildLayout resource identifier of a layout file that defines
69 * @param collapsedGroupLayout resource identifier of a layout file that
71 * @param expandedGroupLayout resource identifier of a layout file that
73 * @param childLayout resource identifier of a layout file that defines the
87 * @param groupLayout resource identifier of a layout file that defines the
89 * @param childLayout resource identifier of a layout file that defines the
  /frameworks/base/docs/html/guide/tutorials/views/
hello-linearlayout.jd 12 <li>Open the layout file.
99 <p>Carefully inspect the XML. You'll notice how this layout works a lot like
100 an HTML layout. There is one parent LinearLayout that is defined to lay
101 its child elements vertically. The first child is another LinearLayout that uses a horizontal layout
102 and the second uses a vertical layout. Each LinearLayout contains several {@link android.widget.TextView}
105 <li>Now open the HelloLinearLayout Activity and be sure it loads this layout in the <code>onCreate()</code> method:</p>
109 setContentView(R.layout.main);
112 <p><code>R.layout.main</code> refers to the <code>main.xml</code> layout file.</p>

Completed in 672 milliseconds

1 2 3 45 6 7 8 91011>>