HomeSort by relevance Sort by last modified time
    Searched full:scaledlayout (Results 1 - 9 of 9) sorted by null

  /packages/apps/TV/tuner/tests/unittests/javatests/com/android/tv/tuner/layout/tests/
ScaledLayoutActivity.java 23 import com.android.tv.tuner.layout.ScaledLayout;
38 private ScaledLayout createScaledLayoutTestcaseLayout() {
39 ScaledLayout scaledLayout = new ScaledLayout(this);
40 scaledLayout.setLayoutParams(new FrameLayout.LayoutParams(100, 100));
44 view1.setLayoutParams(new ScaledLayout.ScaledLayoutParams(0f, 0.5f, 0f, 0.5f));
48 view2.setLayoutParams(new ScaledLayout.ScaledLayoutParams(0f, 0.5f, 0.5f, 1f));
52 view3.setLayoutParams(new ScaledLayout.ScaledLayoutParams(0.5f, 1f, 0f, 0.5f));
56 view4.setLayoutParams(new ScaledLayout.ScaledLayoutParams(0.5f, 1f, 0.5f, 1f))
    [all...]
ScaledLayoutTest.java 28 import com.android.tv.tuner.layout.ScaledLayout;
57 ScaledLayout scaledLayout = (ScaledLayout) rootLayout.getChildAt(0);
58 assertNotNull(scaledLayout);
59 View view1 = scaledLayout.findViewById(R.id.view1);
61 View view2 = scaledLayout.findViewById(R.id.view2);
63 View view3 = scaledLayout.findViewById(R.id.view3);
65 View view4 = scaledLayout.findViewById(R.id.view4);
91 ScaledLayout scaledLayout = (ScaledLayout) rootLayout.getChildAt(1)
    [all...]
AndroidManifest.xml 23 android:label="ScaledLayout Test" />
  /packages/apps/TV/tuner/src/com/android/tv/tuner/cc/
CaptionLayout.java 22 import com.android.tv.tuner.layout.ScaledLayout;
28 public class CaptionLayout extends ScaledLayout {
35 private final ScaledLayout mSafeTitleAreaLayout;
48 mSafeTitleAreaLayout = new ScaledLayout(context);
CaptionWindowLayout.java 47 import com.android.tv.tuner.layout.ScaledLayout;
278 * the window. Since the window will be positioned at {@link ScaledLayout}, the size factors are
324 // Otherwise a {@link RuntimeException} will be raised in {@link ScaledLayout}.
423 new ScaledLayout.ScaledLayoutParams(
  /packages/apps/TV/tuner/tests/unittests/javatests/res/layout/
activity_scaled_layout_test.xml 24 <com.android.tv.tuner.layout.ScaledLayout android:id="@+id/scaled_layout"
52 </com.android.tv.tuner.layout.ScaledLayout>
  /packages/apps/TV/tuner/src/com/android/tv/tuner/layout/
ScaledLayout.java 34 public class ScaledLayout extends ViewGroup {
35 private static final String TAG = "ScaledLayout";
53 public ScaledLayout(Context context) {
57 public ScaledLayout(Context context, AttributeSet attrs) {
61 public ScaledLayout(Context context, AttributeSet attrs, int defStyle) {
149 "A child of ScaledLayout cannot have the UNSPECIFIED scale factors");
157 "A child of ScaledLayout should have a range of "
162 "A child of ScaledLayout should have a range of "
167 "A child of ScaledLayout should have a range of "
172 "A child of ScaledLayout should have a range of
    [all...]
  /packages/apps/TV/tuner/tests/unittests/javatests/
AndroidManifest.xml 31 android:label="ScaledLayout Test" />
  /frameworks/base/media/java/android/media/
Cea708CaptionRenderer.java     [all...]

Completed in 115 milliseconds