Searched defs:decor (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/app/
H A DActivityTransitionCoordinator.java817 ViewGroup decor = getDecor();
818 if (decor != null) {
822 GhostView.addGhost(view, decor);
824 if (moveWithParent && !isInTransitionGroup(parent, decor)) {
825 GhostViewListeners listener = new GhostViewListeners(view, parent, decor);
837 public static boolean isInTransitionGroup(ViewParent viewParent, ViewGroup decor) { argument
838 if (viewParent == decor || !(viewParent instanceof ViewGroup)) {
845 return isInTransitionGroup(parent.getParent(), decor);
861 ViewGroup decor = getDecor();
862 if (decor !
935 GhostViewListeners(View view, View parent, ViewGroup decor) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DWindowDecorActionBar.java65 * by devices of all screen sizes as part of the window decor layout.
66 * If it detects a compatible decor, it will split contextual modes
163 View decor = window.getDecorView();
165 init(decor);
167 mContentView = decor.findViewById(android.R.id.content);
185 private void init(View decor) { argument
186 mOverlayLayout = (ActionBarOverlayLayout) decor.findViewById(
191 mDecorToolbar = getDecorToolbar(decor.findViewById(com.android.internal.R.id.action_bar));
192 mContextView = (ActionBarContextView) decor.findViewById(
194 mContainerView = (ActionBarContainer) decor
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DWindowDecorActionBar.java68 * by devices of all screen sizes as part of the window decor layout.
69 * If it detects a compatible decor, it will split contextual modes
175 View decor = window.getDecorView();
176 init(decor);
178 mContentView = decor.findViewById(android.R.id.content);
196 private void init(View decor) { argument
197 mOverlayLayout = (ActionBarOverlayLayout) decor.findViewById(R.id.decor_content_parent);
201 mDecorToolbar = getDecorToolbar(decor.findViewById(R.id.action_bar));
202 mContextView = (ActionBarContextView) decor.findViewById(
204 mContainerView = (ActionBarContainer) decor
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java150 // This is the top-level view of the window, containing the window decor.
365 // decor, when theme attributes and the like are crystalized. Do not check the feature
394 // decor, when theme attributes and the like are crystalized. Do not check the feature
650 // Causes the decor view to be recreated
710 // Initialize the panel decor, this will populate st.decorView
844 // force a refresh of the decor
1250 * PanelFeatureState.decor to the panel's window decor view.
1533 Log.e(TAG, "Horizontal progress bar not located in current window decor");
1540 Log.e(TAG, "Circular progress bar not located in current window decor");
3334 generateLayout(DecorView decor) argument
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java887 * @param decor Decoration to add
891 public void addItemDecoration(ItemDecoration decor, int index) { argument
900 mItemDecorations.add(decor);
902 mItemDecorations.add(index, decor);
918 * @param decor Decoration to add
920 public void addItemDecoration(ItemDecoration decor) { argument
921 addItemDecoration(decor, -1);
930 * @param decor Decoration to remove
933 public void removeItemDecoration(ItemDecoration decor) { argument
938 mItemDecorations.remove(decor);
[all...]

Completed in 327 milliseconds