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

1 2 3 4 5 6 7 8 91011>>

  /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>
  /cts/tests/tests/widget/src/android/widget/cts/
RelativeLayoutTest.java 36 import android.widget.RelativeLayout;
42 * Test {@link RelativeLayout}.
59 new RelativeLayout(mActivity);
61 new RelativeLayout(mActivity, null);
63 new RelativeLayout(mActivity, null, 0);
67 new RelativeLayout(mActivity, attrs);
70 new RelativeLayout(null, null);
77 // Initial gravity for this RelativeLayout is Gravity.Right.
78 final RelativeLayout relativeLayout = (RelativeLayout) mActivity.findViewById
    [all...]
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...]
  /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/core/tests/hosttests/test-apps/MultiDexLegacyVersionedTestApp_v1/res/layout/
activity_main.xml 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
7 </RelativeLayout>
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyVersionedTestApp_v2/res/layout/
activity_main.xml 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
7 </RelativeLayout>
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyVersionedTestApp_v3/res/layout/
activity_main.xml 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
7 </RelativeLayout>
  /platform_testing/tests/perf/PerformanceLaunch/res/layout/
activity_background.xml 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
8 </RelativeLayout
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyAndException/res/layout/
activity_main.xml 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
13 </RelativeLayout>
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestApp/res/layout/
activity_main.xml 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
13 </RelativeLayout>
  /frameworks/base/tests/FeatureSplit/base/res/layout/
main.xml 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
11 </RelativeLayout>
  /frameworks/base/tests/HierarchyViewerTest/res/layout/
activity_main.xml 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
12 </RelativeLayout>
  /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 or 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...]
  /frameworks/rs/java/tests/Refocus/res/layout/
activity_main.xml 9 <RelativeLayout
25 </RelativeLayout>
27 <RelativeLayout
43 </RelativeLayout>
45 <RelativeLayout
55 </RelativeLayout>
  /cts/tests/tests/assist/service/res/layout/
assist_layer.xml 2 <RelativeLayout
14 </RelativeLayout>
  /developers/build/prebuilts/gradle/HorizontalPaging/Application/src/main/res/layout/
fragment_main_dummy.xml 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
16 </RelativeLayout>
  /developers/samples/android/ui/views/HorizontalPaging/Application/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);
  /development/samples/browseable/HorizontalPaging/res/layout/
fragment_main_dummy.xml 0 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
16 </RelativeLayout>
  /external/robolectric/v1/src/test/resources/res/layout/
mapview.xml 3 <RelativeLayout
17 </RelativeLayout

Completed in 697 milliseconds

1 2 3 4 5 6 7 8 91011>>