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

  /external/robolectric/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();
  /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);
  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
RowsActivity.java 53 BrowseFrameLayout frameLayout = (BrowseFrameLayout) findViewById(R.id.rows_frame);
54 mTitleHelper = new TitleHelper(frameLayout, titleView);
55 frameLayout.setOnFocusSearchListener(mTitleHelper.getOnFocusSearchListener());
  /cts/tests/tests/widget/src/android/widget/cts/
FrameLayoutTest.java 46 import android.widget.FrameLayout;
47 import android.widget.FrameLayout.LayoutParams;
56 private FrameLayout mFrameLayout;
68 mFrameLayout = (FrameLayout) mActivity.findViewById(R.id.framelayout);
77 new FrameLayout(mActivity);
78 new FrameLayout(mActivity, attrs);
79 new FrameLayout(mActivity, attrs, 0);
159 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 
  /external/jmonkeyengine/engine/src/android/com/jme3/app/
AndroidHarness.java 13 import android.widget.FrameLayout;
119 private FrameLayout frameLayout = null;
355 FrameLayout.LayoutParams lp = new FrameLayout.LayoutParams(
360 frameLayout = new FrameLayout(this);
370 frameLayout.addView(view);
371 frameLayout.addView(splashImageView, lp);
373 setContentView(frameLayout);
    [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...]
  /packages/apps/Browser/src/com/android/browser/
BaseUi.java 49 import android.widget.FrameLayout;
66 protected static final FrameLayout.LayoutParams COVER_SCREEN_PARAMS =
67 new FrameLayout.LayoutParams(
71 protected static final FrameLayout.LayoutParams COVER_SCREEN_GRAVITY_CENTER =
72 new FrameLayout.LayoutParams(
90 protected FrameLayout mContentView;
91 protected FrameLayout mCustomViewContainer;
92 protected FrameLayout mFullscreenContainer;
93 private FrameLayout mFixedTitlebarContainer;
126 FrameLayout frameLayout = (FrameLayout) mActivity.getWindow(
    [all...]
  /hardware/ti/omap4-aah/camera/OMXCameraAdapter/
OMXCameraAdapter.cpp     [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
ViewLoaderTest.java 208 ViewGroup frameLayout = (ViewGroup) viewGroup.getChildAt(1);
209 assertEquals(0, frameLayout.getChildCount());
  /cts/tests/uiautomator/src/com/android/cts/uiautomatortest/
CtsUiAutomatorTest.java 366 UiSelector frameLayout = new UiSelector().className(android.widget.FrameLayout.class
372 UiObject button = new UiObject(frameLayout.childSelector(gridLayout).childSelector(
    [all...]

Completed in 430 milliseconds