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

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowListActivity.java 5 import android.view.ViewGroup;
70 } else if (parent instanceof ViewGroup) {
71 ViewGroup viewGroup = (ViewGroup) parent;
72 for (int i = 0; i < viewGroup.getChildCount(); i++) {
73 ListView listView = findListView(viewGroup.getChildAt(i));
ShadowDialog.java 10 import android.view.ViewGroup;
251 if (view instanceof ViewGroup) {
252 ViewGroup viewGroup = (ViewGroup) view;
253 for (int i = 0; i < viewGroup.getChildCount(); i++) {
254 View child = viewGroup.getChildAt(i);
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContentViewClient.java 50 final FrameLayout viewGroup = new FrameLayout(mContext);
51 viewGroup.addView(view);
52 viewGroup.addOnAttachStateChangeListener(new View.OnAttachStateChangeListener() {
63 viewGroup.addView(mAwContents.enterFullScreen());
66 mAwContentsClient.onShowCustomView(viewGroup, cb);
  /frameworks/base/core/tests/coretests/src/android/animation/
StateListAnimatorTest.java 24 import android.view.ViewGroup;
64 ViewGroup viewGroup = (ViewGroup) getActivity().findViewById(android.R.id.content);
66 viewGroup.addView(view);
78 viewGroup.removeView(view);
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
UiUtils.java 14 import android.view.ViewGroup;
106 * Inserts a {@link View} into a {@link ViewGroup} after directly before a given {@View}.
112 public static int insertBefore(ViewGroup container, View newView, View existingView) {
117 * Inserts a {@link View} into a {@link ViewGroup} after directly after a given {@View}.
123 public static int insertAfter(ViewGroup container, View newView, View existingView) {
128 ViewGroup container, View newView, View existingView, boolean after) {
210 if (view instanceof ViewGroup) {
211 ViewGroup viewGroup = (ViewGroup) view
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
PseudoGridView.java 26 import android.view.ViewGroup;
36 public class PseudoGridView extends ViewGroup {
138 * Bridges between a ViewGroup and a BaseAdapter.
140 * Usage: {@code ViewGroupAdapterBridge.link(viewGroup, adapter)}
142 * After this call, the ViewGroup's children will be provided by the adapter.
146 private final WeakReference<ViewGroup> mViewGroup;
150 public static void link(ViewGroup viewGroup, BaseAdapter adapter) {
151 new ViewGroupAdapterBridge(viewGroup, adapter);
154 private ViewGroupAdapterBridge(ViewGroup viewGroup, BaseAdapter adapter)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
ResourceLoaderTest.java 4 import android.view.ViewGroup;
48 ViewGroup vg = new FrameLayout(Robolectric.application);
70 ViewGroup viewGroup = new FrameLayout(Robolectric.application);
71 ViewGroup view = (ViewGroup) resourceLoader.inflateView(Robolectric.application, R.layout.different_screen_sizes, viewGroup);
88 ViewGroup viewGroup = new FrameLayout(Robolectric.application);
89 ViewGroup view = (ViewGroup) resourceLoader.inflateView(Robolectric.application, R.layout.different_screen_s (…)
    [all...]
ViewLoaderTest.java 8 import android.view.ViewGroup;
61 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/media");
69 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes");
77 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes");
85 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes");
93 ViewGroup view = (ViewGroup) viewLoader.inflateView(context, "layout/different_screen_sizes")
    [all...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/
SmartClipProviderTest.java 16 import android.view.ViewGroup;
139 } else if (v instanceof ViewGroup) {
140 ViewGroup viewGroup = (ViewGroup) v;
141 int count = viewGroup.getChildCount();
143 View c = viewGroup.getChildAt(i);
  /frameworks/support/v4/api21/android/support/v4/app/
FragmentTransitionCompat21.java 28 import android.view.ViewGroup;
67 public static void beginDelayedTransition(ViewGroup sceneRoot, Object transitionObject) {
232 if (view instanceof ViewGroup) {
233 ViewGroup viewGroup = (ViewGroup) view;
234 if (viewGroup.isTransitionGroup()) {
235 transitioningViews.add(viewGroup);
237 int count = viewGroup.getChildCount();
239 View child = viewGroup.getChildAt(i)
    [all...]
  /frameworks/base/core/java/android/view/
LayoutInflater.java 339 * which is not allowed by the {@link Filter}, the {@link #inflate(int, ViewGroup)} call will
364 public View inflate(int resource, ViewGroup root) {
384 public View inflate(XmlPullParser parser, ViewGroup root) {
405 public View inflate(int resource, ViewGroup root, boolean attachToRoot) {
442 public View inflate(XmlPullParser parser, ViewGroup root, boolean attachToRoot) {
476 + "ViewGroup root and attachToRoot=true");
484 ViewGroup.LayoutParams params = null;
    [all...]
GhostView.java 41 final ViewGroup parent = (ViewGroup) mView.getParent();
84 final ViewGroup parent = (ViewGroup) mView.getParent();
92 public static void calculateMatrix(View view, ViewGroup host, Matrix matrix) {
93 ViewGroup parent = (ViewGroup) view.getParent();
100 public static GhostView addGhost(View view, ViewGroup viewGroup, Matrix matrix) {
101 if (!(view.getParent() instanceof ViewGroup)) {
    [all...]
  /external/chromium_org/third_party/skia/platform_tools/android/app/src/com/skia/
SkiaSampleActivity.java 21 import android.view.ViewGroup;
63 ViewGroup viewGroup = (ViewGroup) mSampleView.getParent();
64 viewGroup.removeView(mSampleView);
71 ViewGroup.LayoutParams.MATCH_PARENT,
72 ViewGroup.LayoutParams.MATCH_PARENT));
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ViewGroupTest.java 5 import android.view.ViewGroup;
32 private ViewGroup root;
35 private ViewGroup child3;
121 assertThat((ViewGroup) root.findViewWithTag("tag3"), sameInstance(child3));
134 assertThat((ViewGroup) root.findViewWithTag("tag23"), equalTo(null));
153 assertThat((ViewGroup) root.findViewWithTag("tag3"), sameInstance(child3));
162 ViewGroup viewGroup = new LinearLayout(Robolectric.application) {
168 assertThat((ViewGroup) viewGroup.findViewWithTag("blarg"), sameInstance(viewGroup))
    [all...]
  /external/skia/platform_tools/android/app/src/com/skia/
SkiaSampleActivity.java 21 import android.view.ViewGroup;
63 ViewGroup viewGroup = (ViewGroup) mSampleView.getParent();
64 viewGroup.removeView(mSampleView);
71 ViewGroup.LayoutParams.MATCH_PARENT,
72 ViewGroup.LayoutParams.MATCH_PARENT));
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupBrowseListFragment.java 38 import android.view.ViewGroup;
100 public View onCreateView(LayoutInflater inflater, ViewGroup container,
127 viewGroup(groupListItem.getUri());
230 viewGroup(mSelectedGroupUri);
251 private void viewGroup(Uri groupUri) {
257 viewGroup(groupUri);
  /packages/apps/Dialer/src/com/android/dialer/list/
ShortcutCardsAdapter.java 27 import android.view.ViewGroup;
186 public View getView(int position, View convertView, ViewGroup parent) {
378 final ViewGroup viewGroup = (ViewGroup) viewToClip;
380 viewGroup, Math.max(0, 1 - (CLIP_CARD_OPACITY_RATIO * ratioHidden)));
383 private void setChildrenOpacity(ViewGroup viewGroup, float alpha) {
384 final int count = viewGroup.getChildCount();
386 viewGroup.getChildAt(i).setAlpha(alpha)
    [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
AnimationActivity.java 38 import android.view.ViewGroup;
78 ViewGroup viewGroup = (ViewGroup) findViewById(R.id.container);
79 viewGroup.addView(view);
  /packages/apps/MusicFX/src/com/android/musicfx/
ActivityMusic.java 46 import android.view.ViewGroup;
266 final ViewGroup viewGroup = (ViewGroup) findViewById(R.id.contentSoundEffects);
298 setEnabledAllChildren(viewGroup, isChecked);
441 viewGroup.setVisibility(View.GONE);
546 * @param viewGroup
549 private void setEnabledAllChildren(final ViewGroup viewGroup, final boolean enabled) {
550 final int count = viewGroup.getChildCount()
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
SimpleCursorAdapterTest.java 32 import android.view.ViewGroup;
329 ViewGroup viewGroup = (ViewGroup) layoutInflater.inflate(
331 View result = simpleCursorAdapter.newView(mContext, null, viewGroup);
345 ViewGroup viewGroup = (ViewGroup) layoutInflater.inflate(
347 View result = simpleCursorAdapter.newDropDownView(null, null, viewGroup);
  /packages/apps/Camera/src/com/android/camera/
PhotoModule.java 56 import android.view.ViewGroup;
476 mActivity.getLayoutInflater().inflate(R.layout.photo_module, (ViewGroup) mRootView);
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewTest.java 70 import android.view.ViewGroup;
246 ViewGroup parent = (ViewGroup) mActivity.findViewById(R.id.viewlayout_root);
262 final int WRAP_CONTENT = ViewGroup.LayoutParams.WRAP_CONTENT;
289 ViewGroup viewGroup = (ViewGroup) mActivity.findViewById(R.id.viewlayout_root);
297 viewGroup.setTag(viewData);
298 viewGroup.setFocusable(true);
299 assertSame(viewData, viewGroup.getTag())
    [all...]
  /prebuilts/sdk/current/support/v13/
android-support-v13.jar 
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 

Completed in 1415 milliseconds