Searched refs:contentParent (Results 1 – 3 of 3) sorted by relevance
276 ViewGroup contentParent = (ViewGroup) mSubDecor.findViewById(android.R.id.content);277 contentParent.removeAllViews();278 contentParent.addView(v);285 ViewGroup contentParent = (ViewGroup) mSubDecor.findViewById(android.R.id.content);286 contentParent.removeAllViews();287 LayoutInflater.from(mContext).inflate(resId, contentParent);294 ViewGroup contentParent = (ViewGroup) mSubDecor.findViewById(android.R.id.content);295 contentParent.removeAllViews();296 contentParent.addView(v, lp);303 ViewGroup contentParent = (ViewGroup) mSubDecor.findViewById(android.R.id.content);[all …]
2581 ViewGroup contentParent = (ViewGroup)findViewById(ID_ANDROID_CONTENT); in generateLayout()2582 if (contentParent == null) { in generateLayout()2594 registerSwipeCallbacks(contentParent); in generateLayout()2631 return contentParent; in generateLayout()3008 private void registerSwipeCallbacks(ViewGroup contentParent) {3009 if (!(contentParent instanceof SwipeDismissLayout)) {3010 Log.w(TAG, "contentParent is not a SwipeDismissLayout: " + contentParent);3013 SwipeDismissLayout swipeDismiss = (SwipeDismissLayout) contentParent;
1883 final ViewParent contentParent = contentView.getParent(); in dismiss() local1884 if (contentParent instanceof ViewGroup) { in dismiss()1885 contentHolder = ((ViewGroup) contentParent); in dismiss()