HomeSort by relevance Sort by last modified time
    Searched defs:frameLayout (Results 1 - 8 of 8) 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();
  /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/core/java/android/view/
GhostView.java 20 import android.widget.FrameLayout;
124 FrameLayout parent = new FrameLayout(view.getContext());
263 * Returns true if view is a GhostView's FrameLayout wrapper.
266 if (view instanceof FrameLayout) {
267 FrameLayout frameLayout = (FrameLayout) view;
268 if (frameLayout.getChildCount() == 1) {
269 View child = frameLayout.getChildAt(0)
    [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...]
  /hardware/ti/omap4-aah/camera/OMXCameraAdapter/
OMXCameraAdapter.cpp     [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...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
WallpaperPickerActivity.java 67 import android.widget.FrameLayout;
495 FrameLayout pickImageTile = (FrameLayout) getLayoutInflater().
730 FrameLayout thumbnail = (FrameLayout) adapter.getView(i, null, parent);
    [all...]

Completed in 313 milliseconds