HomeSort by relevance Sort by last modified time
    Searched refs:frameLayout (Results 1 - 25 of 25) sorted by null

  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
FrameLayoutTest.java 6 import android.widget.FrameLayout;
23 FrameLayout frameLayout = new FrameLayout(null);
24 assertNotNull(frameLayout);
29 FrameLayout frameLayout = new FrameLayout(null);
30 ViewGroup.LayoutParams layoutParams = frameLayout.getLayoutParams();
  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
ShadowOverlayContainerTest.java 22 import android.widget.FrameLayout;
29 FrameLayout frameLayout = new FrameLayout(getContext());
31 textView.setLayoutParams(new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT,
37 frameLayout.addView(container);
38 frameLayout.measure(MeasureSpec.makeMeasureSpec(500, MeasureSpec.EXACTLY),
40 frameLayout.layout(0, 0, 500, 500);
49 textView.setLayoutParams(new FrameLayout.LayoutParams(123, 123));
50 frameLayout.measure(MeasureSpec.makeMeasureSpec(500, MeasureSpec.EXACTLY)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
ImageOnlyEditor.java 20 import android.widget.FrameLayout;
45 public void createEditor(Context context, FrameLayout frameLayout) {
46 super.createEditor(context, frameLayout);
EditorCurves.java 21 import android.widget.FrameLayout;
48 public void createEditor(Context context, FrameLayout frameLayout) {
49 super.createEditor(context, frameLayout);
EditorRedEye.java 20 import android.widget.FrameLayout;
44 public void createEditor(Context context, FrameLayout frameLayout) {
45 super.createEditor(context, frameLayout);
EditorTinyPlanet.java 20 import android.widget.FrameLayout;
37 public void createEditor(Context context, FrameLayout frameLayout) {
38 super.createEditor(context, frameLayout);
EditorMirror.java 24 import android.widget.FrameLayout;
44 public void createEditor(Context context, FrameLayout frameLayout) {
45 super.createEditor(context, frameLayout);
EditorStraighten.java 21 import android.widget.FrameLayout;
48 public void createEditor(Context context, FrameLayout frameLayout) {
49 super.createEditor(context, frameLayout);
EditorRotate.java 24 import android.widget.FrameLayout;
44 public void createEditor(Context context, FrameLayout frameLayout) {
45 super.createEditor(context, frameLayout);
EditorColorBorder.java 30 import android.widget.FrameLayout;
79 public void createEditor(Context context, FrameLayout frameLayout) {
81 super.createEditor(context, frameLayout);
EditorCrop.java 26 import android.widget.FrameLayout;
75 public void createEditor(Context context, FrameLayout frameLayout) {
76 super.createEditor(context, frameLayout);
Editor.java 29 import android.widget.FrameLayout;
52 protected FrameLayout mFrameLayout;
143 public void createEditor(Context context, FrameLayout frameLayout) {
145 mFrameLayout = frameLayout;
EditorDraw.java 33 import android.widget.FrameLayout;
111 public void createEditor(Context context, FrameLayout frameLayout) {
113 super.createEditor(context, frameLayout);
ParametricEditor.java 27 import android.widget.FrameLayout;
129 public void createEditor(Context context, FrameLayout frameLayout) {
130 super.createEditor(context, frameLayout);
EditorGrad.java 25 import android.widget.FrameLayout;
64 public void createEditor(Context context, FrameLayout frameLayout) {
65 super.createEditor(context, frameLayout);
EditorVignette.java 25 import android.widget.FrameLayout;
76 public void createEditor(Context context, FrameLayout frameLayout) {
77 super.createEditor(context, frameLayout);
  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
RowsActivity.java 52 BrowseFrameLayout frameLayout = (BrowseFrameLayout) findViewById(R.id.rows_frame);
53 mTitleHelper = new TitleHelper(frameLayout, titleView);
54 frameLayout.setOnFocusSearchListener(mTitleHelper.getOnFocusSearchListener());
RowsSupportActivity.java 54 BrowseFrameLayout frameLayout = (BrowseFrameLayout) findViewById(R.id.rows_frame);
55 mTitleHelper = new TitleHelper(frameLayout, titleView);
56 frameLayout.setOnFocusSearchListener(mTitleHelper.getOnFocusSearchListener());
  /cts/tests/tests/widget/src/android/widget/cts/
FrameLayoutTest.java 43 import android.widget.FrameLayout;
44 import android.widget.FrameLayout.LayoutParams;
55 private FrameLayout mFrameLayout;
67 mFrameLayout = (FrameLayout) mActivity.findViewById(R.id.framelayout);
76 new FrameLayout(mActivity);
77 new FrameLayout(mActivity, attrs);
78 new FrameLayout(mActivity, attrs, 0);
147 final FrameLayout frameLayout
    [all...]
  /frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/debug/com/android/layoutlib/test/myapplication/
R$id.class 
  /frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
ButtonItemTest.java 24 import android.widget.FrameLayout;
74 FrameLayout frameLayout = new FrameLayout(getContext());
75 frameLayout.addView(button);
  /frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/view/
HeaderRecyclerView.java 28 import android.widget.FrameLayout;
111 * framelayout to which the header is attached using #onBindViewHolder method.
114 FrameLayout frameLayout = new FrameLayout(parent.getContext());
115 FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(
116 FrameLayout.LayoutParams.MATCH_PARENT,
117 FrameLayout.LayoutParams.WRAP_CONTENT
119 frameLayout.setLayoutParams(params)
    [all...]
  /frameworks/base/core/java/android/view/
GhostView.java 20 import android.widget.FrameLayout;
118 FrameLayout parent = new FrameLayout(view.getContext());
257 * Returns true if view is a GhostView's FrameLayout wrapper.
260 if (view instanceof FrameLayout) {
261 FrameLayout frameLayout = (FrameLayout) view;
262 if (frameLayout.getChildCount() == 1) {
263 View child = frameLayout.getChildAt(0)
    [all...]
  /hardware/ti/omap4-aah/camera/OMXCameraAdapter/
OMXCameraAdapter.cpp     [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/
ViewLoaderTest.java 208 ViewGroup frameLayout = (ViewGroup) viewGroup.getChildAt(1);
209 assertEquals(0, frameLayout.getChildCount());

Completed in 1390 milliseconds