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

1 2

  /packages/apps/TV/tuner/tests/unittests/javatests/com/android/tv/tuner/layout/tests/
ScaledLayoutTest.java 63 View view3 = scaledLayout.findViewById(R.id.view3); local
64 assertNotNull(view3);
75 assertEquals((int) (400 * 0.2), view3.getWidth());
76 assertEquals((int) (300 * 0.1), view3.getHeight());
77 assertEquals((int) (400 * 0.3), view3.getLeft());
78 assertEquals((int) (300 * 0.4), view3.getTop());
97 View view3 = scaledLayout.findViewById(R.id.view3); local
98 assertNotNull(view3);
    [all...]
ScaledLayoutActivity.java 50 View view3 = new View(this); local
51 view3.setId(R.id.view3);
52 view3.setLayoutParams(new ScaledLayout.ScaledLayoutParams(0.5f, 1f, 0f, 0.5f));
60 scaledLayout.addView(view3);
  /cts/tests/tests/view/res/layout/
focus_handling_layout.xml 39 android:id="@+id/view3"
51 android:layout_toRightOf="@id/view3"
52 android:layout_alignTop="@id/view3"
55 android:nextFocusLeft="@id/view3"
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
BindableObservablesTest.java 76 assertThat(binding.view3.getMaxLines(), is(30));
79 assertThat(binding.view3.getMaxLines(), is(15));
130 assertThat(binding.view3.getMaxLines(), is(30));
135 assertThat(binding.view3.getMaxLines(), is(30));
139 assertThat(binding.view3.getMaxLines(), is(15));
ImageViewBindingAdapterTest.java 57 assertNull(mBinder.view3.getDrawable());
67 assertNotNull(mBinder.view3.getDrawable());
MultiArgAdapterTest.java 49 assertEquals(mBinder.view3.getText().toString(), join(obj3));
61 String prev3 = mBinder.view3.getText().toString();
69 assertEquals("obj3 should not be re-evaluated", prev3, mBinder.view3.getText().toString());
  /cts/tests/tests/widget/src/android/widget/cts/
RelativeLayout_LayoutParamsTest.java 113 // view3, has same top position with view1 and same bottom position with view2,
116 View view3 = mActivity.findViewById(R.id.relative_view3); local
117 ViewAsserts.assertTopAligned(view1, view3);
118 ViewAsserts.assertBottomAligned(view2, view3);
119 assertEquals(view1.getRight(), view3.getLeft());
120 layoutParams = (RelativeLayout.LayoutParams) (view3.getLayoutParams());
126 // view4, has same right position with view3 and above view3.
129 ViewAsserts.assertRightAligned(view3, view4);
130 assertEquals(view3.getTop(), view4.getBottom())
232 View view3 = mActivity.findViewById(R.id.relative_view23); local
    [all...]
  /development/samples/ApiDemos/res/layout/
relative_layout_1.xml 43 <!-- view3 stretches betweeen view1 and view2 -->
45 android:id="@+id/view3"
tabs1.xml 33 <TextView android:id="@+id/view3"
linear_layout_1.xml 39 <!-- view3 goes on the bottom -->
linear_layout_2.xml 39 <!-- view3 goes on the bottom -->
linear_layout_3.xml 44 <!-- view3 goes on the bottom -->
transition_scene1.xml 43 android:id="@+id/view3"/>
transition_scene2.xml 43 android:id="@+id/view3"/>
  /platform_testing/tests/perf/PerformanceLaunch/res/layout/
activity_simple.xml 41 android:id="@+id/View3"
54 android:layout_alignBottom="@+id/View3"
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ScrollBar3.java 33 findViewById(R.id.view3).setScrollBarStyle(View.SCROLLBARS_INSIDE_INSET);
Tabs1.java 48 .setContent(R.id.view3));
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/res/layout/
bindable_observables.xml 28 <TextView android:id="@+id/view3" android:layout_width="wrap_content"
image_view_adapter_test.xml 38 android:id="@+id/view3"
  /cts/tests/tests/widget/res/layout/
linearlayout_zero_weight_horizontal.xml 51 android:id="@+id/view3"
linearlayout_zero_weight_vertical.xml 51 android:id="@+id/view3"
  /frameworks/base/core/tests/coretests/res/layout/
layout_three.xml 23 <view class="android.view.InflateTest$ViewOne" android:id="@+id/view3" android:layout_width="match_parent" android:layout_height="match_parent"/>
  /packages/apps/TV/tuner/tests/unittests/javatests/res/layout/
activity_scaled_layout_test.xml 40 <View android:id="@+id/view3"
  /cts/tests/tests/view/src/android/view/cts/
ViewPaddingTest.java 56 View view3 = viewGroup.findViewById(R.id.view3); local
81 checkBounds(view3, defaultBounds, insetLeft, insetTop, 0, 0);
View_FocusHandlingTest.java 59 View v3 = activity.findViewById(R.id.view3);
84 v1.setNextFocusDownId(R.id.view3);
92 v4.setNextFocusLeftId(R.id.view3);
97 assertEquals(R.id.view3, v1.getNextFocusDownId());
106 assertEquals(R.id.view3, v4.getNextFocusLeftId());
249 View v3 = activity.findViewById(R.id.view3);

Completed in 474 milliseconds

1 2