HomeSort by relevance Sort by last modified time
    Searched full:relativelayout (Results 1 - 25 of 629) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/widget/src/android/widget/cts/
RelativeLayout_LayoutParamsTest.java 26 import android.widget.RelativeLayout;
29 * Test {@link RelativeLayout.LayoutParams}.
40 RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(200, 300);
44 RelativeLayout.LayoutParams tempLayoutParams = layoutParams;
45 layoutParams = new RelativeLayout.LayoutParams(tempLayoutParams);
50 layoutParams = new RelativeLayout.LayoutParams(tempMarginLayoutParams);
54 // Test RelativeLayout.Params which generated from the xml file.
58 // test attributes used in RelativeLayout.
59 RelativeLayout relativeLayout = (RelativeLayout) activity.findViewById
    [all...]
RelativeLayoutTest.java 38 import android.widget.RelativeLayout;
43 * Test {@link RelativeLayout}.
60 new RelativeLayout(mActivity);
62 new RelativeLayout(mActivity, null);
64 new RelativeLayout(mActivity, null, 0);
68 new RelativeLayout(mActivity, attrs);
71 new RelativeLayout(null, null);
78 // Initial gravity for this RelativeLayout is Gravity.Right.
79 final RelativeLayout relativeLayout = (RelativeLayout) mActivity.findViewById
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
completion12.xml 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
7 </RelativeLayout>
sample4.info 3 android.widget.RelativeLayout [0,36,240,284] <RelativeLayout>
completion10.xml 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
10 </RelativeLayout>
completion11.xml 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
15 </RelativeLayout>
sample2.info 3 android.widget.RelativeLayout [0,36,240,284] <RelativeLayout>
  /frameworks/base/tests/BiDiTests/res/layout/
relative_layout_ltr.xml 27 <RelativeLayout
32 </RelativeLayout>
34 <RelativeLayout
39 </RelativeLayout>
41 <RelativeLayout
46 </RelativeLayout>
48 <RelativeLayout
53 </RelativeLayout>
55 <RelativeLayout
60 </RelativeLayout>
    [all...]
relative_layout_rtl.xml 27 <RelativeLayout
32 </RelativeLayout>
34 <RelativeLayout
39 </RelativeLayout>
41 <RelativeLayout
46 </RelativeLayout>
48 <RelativeLayout
53 </RelativeLayout>
55 <RelativeLayout
60 </RelativeLayout>
    [all...]
  /frameworks/base/docs/html/guide/topics/ui/layout/
relative.jd 2 page.tags="relativelayout"
14 <li>{@link android.widget.RelativeLayout}</li>
15 <li>{@link android.widget.RelativeLayout.LayoutParams}</li>
20 <p>{@link android.widget.RelativeLayout} is a view group that displays child views in relative
23 android.widget.RelativeLayout} area (such as aligned to the bottom, left of center).</p>
25 <img src="{@docRoot}images/ui/relativelayout.png" alt="" />
27 <p>A {@link android.widget.RelativeLayout} is a very powerful utility for designing a user interface
30 you may be able to replace them with a single {@link android.widget.RelativeLayout}.</p>
35 <p>{@link android.widget.RelativeLayout} lets child views specify their position relative to the
40 android.widget.RelativeLayout.LayoutParams}.</p
    [all...]
  /developers/samples/android/ui/views/HorizontalPaging/HorizontalPaging/src/main/res/layout/
fragment_main_dummy.xml 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
16 </RelativeLayout>
  /development/samples/ApiDemos/src/com/example/android/apis/app/
NotificationDisplay.java 30 import android.widget.RelativeLayout;
50 RelativeLayout container = new RelativeLayout(this);
56 RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(
57 RelativeLayout.LayoutParams.WRAP_CONTENT,
58 RelativeLayout.LayoutParams.WRAP_CONTENT);
59 lp.addRule(RelativeLayout.CENTER_IN_PARENT);
  /external/robolectric/src/test/resources/res/layout/
mapview.xml 3 <RelativeLayout
17 </RelativeLayout
  /frameworks/opt/photoviewer/sample/res/layout/
activity_main.xml 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
16 </RelativeLayout>
  /sdk/templates/activities/BlankActivity/root/res/layout/
activity_simple.xml.ftl 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
16 </RelativeLayout>
fragment_dummy.xml.ftl 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
16 </RelativeLayout>
  /sdk/templates/other/AppWidget/root/res/layout/
appwidget.xml 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
21 </RelativeLayout
  /development/samples/training/notify-user/res/layout/
activity_result.xml 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
15 <RelativeLayout
36 </RelativeLayout>
37 </RelativeLayout>
  /packages/apps/Music/src/com/android/music/
CheckableRelativeLayout.java 22 import android.widget.RelativeLayout;
25 * A special variation of RelativeLayout that can be used as a checkable object.
27 * also supports checking. Otherwise, it works identically to a RelativeLayout.
29 public class CheckableRelativeLayout extends RelativeLayout implements Checkable {
  /development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/
CurvedMotion.java 26 import android.widget.RelativeLayout;
27 import android.widget.RelativeLayout.LayoutParams;
98 params.removeRule(RelativeLayout.ALIGN_PARENT_LEFT);
99 params.removeRule(RelativeLayout.ALIGN_PARENT_TOP);
100 params.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
101 params.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
103 params.addRule(RelativeLayout.ALIGN_PARENT_LEFT);
104 params.addRule(RelativeLayout.ALIGN_PARENT_TOP);
105 params.removeRule(RelativeLayout.ALIGN_PARENT_RIGHT);
106 params.removeRule(RelativeLayout.ALIGN_PARENT_BOTTOM)
    [all...]
  /packages/apps/Email/res/layout/
quoted_text.xml 16 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
21 <RelativeLayout android:layout_width="match_parent"
25 <RelativeLayout android:layout_width="wrap_content"
46 </RelativeLayout>
48 </RelativeLayout>
62 </RelativeLayout>
  /cts/apps/CtsVerifier/res/layout/
camera_fov_calibration_determine_fov.xml 14 <RelativeLayout
29 </RelativeLayout>
pass_fail_widget.xml 16 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
25 </RelativeLayout>
  /development/samples/BusinessCard/res/layout/
business_card.xml 2 <RelativeLayout
26 </RelativeLayout>
  /external/svox/PicoLangInstallerDeuDeu/res/layout/
installing.xml 3 <RelativeLayout
29 </RelativeLayout>

Completed in 2865 milliseconds

1 2 3 4 5 6 7 8 91011>>