Searched refs:expanded (Results 26 - 50 of 53) sorted by relevance

123

/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DListRowPresenter.java365 * Sets the expanded row height for rows created by this Presenter.
366 * If not set, expanded rows have the same height as unexpanded
369 * @param rowHeight The row height in to use when the row is expanded,
377 * Returns the expanded row height for rows created by this Presenter.
609 * Show or hide hover card when row selection or expanded state is changed.
642 protected void onRowViewExpanded(RowPresenter.ViewHolder holder, boolean expanded) { argument
643 super.onRowViewExpanded(holder, expanded);
646 int newHeight = expanded ? getExpandedRowHeight() : getRowHeight();
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardStatusView.java444 int expanded = mOwnerInfo.getBottom() + mOwnerInfo.getPaddingBottom();
445 int toRemove = (int) ((expanded - collapsed) * ratio);
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DFalsingManager.java363 public void setQsExpanded(boolean expanded) { argument
364 mDataCollector.setQsExpanded(expanded);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuBuilder.java157 * Currently expanded menu item; must be collapsed when we clear.
179 * Called when the mode of the menu changes (for example, from icon to expanded).
1280 boolean expanded = false;
1287 } else if ((expanded = presenter.expandItemActionView(this, item))) {
1293 if (expanded) {
1296 return expanded;
/frameworks/ex/common/tests/src/com/android/common/widget/
H A DGroupingListAdapterTests.java84 boolean expanded) {
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/view/menu/
H A DMenuBuilder.java181 * Currently expanded menu item; must be collapsed when we clear.
213 * Called when the mode of the menu changes (for example, from icon to expanded).
1359 boolean expanded = false;
1366 } else if ((expanded = presenter.expandItemActionView(this, item))) {
1372 if (expanded) {
1375 return expanded;
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DZenModePanel.java357 private void setExpanded(boolean expanded) { argument
358 if (expanded == mExpanded) return;
359 if (DEBUG) Log.d(mTag, "setExpanded " + expanded);
360 mExpanded = expanded;
869 void onExpanded(boolean expanded); argument
/frameworks/base/core/java/android/view/
H A DNotificationHeaderView.java317 public void setExpanded(boolean expanded) { argument
318 mExpanded = expanded;
/frameworks/support/leanback/src/main/java/androidx/leanback/app/
H A DRowsFragment.java324 static void setRowViewExpanded(ItemBridgeAdapter.ViewHolder vh, boolean expanded) { argument
325 ((RowPresenter) vh.getPresenter()).setRowViewExpanded(vh.getViewHolder(), expanded);
H A DRowsSupportFragment.java319 static void setRowViewExpanded(ItemBridgeAdapter.ViewHolder vh, boolean expanded) { argument
320 ((RowPresenter) vh.getPresenter()).setRowViewExpanded(vh.getViewHolder(), expanded);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java143 /** If {@link #mHasUserChangedExpansion}, has the user expanded this row */
149 * Has this notification been expanded while it was pinned
163 * Is this notification expanded by the system. The expansion state can be overridden by the
223 * expanded by the user.
228 * Whether or not to update the background of the header of the notification when its expanded.
229 * If {@code true}, the header background will disappear when expanded.
1474 void logNotificationExpansion(String key, boolean userAction, boolean expanded); argument
1553 mPrivateLayout = (NotificationContentView) findViewById(R.id.expanded);
1982 * Set this notification to be expanded by the user
1984 * @param userExpanded whether the user wants this notification to be expanded
2222 setSystemChildExpanded(boolean expanded) argument
2385 setChildrenExpanded(boolean expanded, boolean animate) argument
[all...]
H A DNotificationEntryManager.java301 public void logNotificationExpansion(String key, boolean userAction, boolean expanded) { argument
304 mBarService.onNotificationExpansionChanged(key, userAction, expanded);
737 // Add the expanded view and icon.
751 // Construct the expanded view.
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java900 // Down in the empty area while fully expanded - go to QS.
931 // Normally, we start listening when the panel is expanded, but here we need to start
1109 // Reset scroll position and apply that position to the expanded height.
1116 private void setQsExpanded(boolean expanded) { argument
1117 boolean changed = mQsExpanded != expanded;
1119 mQsExpanded = expanded;
1122 mFalsingManager.setQsExpanded(expanded);
1123 mStatusBar.setQsExpanded(expanded);
1124 mNotificationContainerParent.setQsExpanded(expanded);
1382 // are fully expanded, henc
[all...]
H A DNavigationBarView.java746 public void onPanelExpandedChange(boolean expanded) { argument
H A DStatusBar.java382 // expanded notifications
1887 public void setQsExpanded(boolean expanded) { argument
1888 mStatusBarWindowManager.setQsExpanded(expanded);
1889 mNotificationPanel.setStatusAccessibilityImportance(expanded
2242 if (SPEW) Log.d(TAG, "Make expanded visible: expanded visible=" + mExpandedVisible);
3221 // consider the transition from peek to expanded to be a panel open,
3591 * @param beforeFading the runnable to be run when the circle is fully expanded and the fading
4012 // Make our window larger and the panel expanded.
4483 // collapse the panel after we expanded i
[all...]
/frameworks/rs/script_api/
H A Drs_matrix.spec405 When multiplying a float3 to a @rs_matrix4x4, the vector is expanded with (1).
407 When multiplying a float2 to a @rs_matrix4x4, the vector is expanded with (0, 1).
409 When multiplying a float2 to a @rs_matrix3x3, the vector is expanded with (0).
/frameworks/base/core/java/android/net/
H A DUri.java1035 String[] expanded = new String[segments.length * 2];
1036 System.arraycopy(segments, 0, expanded, 0, segments.length);
1037 segments = expanded;
/frameworks/base/services/core/java/com/android/server/statusbar/
H A DStatusBarManagerService.java1076 boolean expanded) throws RemoteException {
1081 key, userAction, expanded);
1075 onNotificationExpansionChanged(String key, boolean userAction, boolean expanded) argument
/frameworks/support/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/
H A DAnimatedRecyclerView.java705 Boolean expanded = mExpanded.get(itemText);
706 if (Boolean.TRUE.equals(expanded)) {
707 myViewHolder.textView.setText("More text for the expanded version");
/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/
H A DAnimatedRecyclerView.java705 Boolean expanded = mExpanded.get(itemText);
706 if (Boolean.TRUE.equals(expanded)) {
707 myViewHolder.textView.setText("More text for the expanded version");
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DDndTile.java455 public void onExpanded(boolean expanded) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationChildrenContainer.java486 // we don't modify it the group is expanded or if we are expanding it
498 * @return the intrinsic size of this children container, i.e the natural fully expanded state
609 // When the group is expanded, the children cast the shadows rather than the parent
678 * When moving into the bottom stack, the bottom visible child in an expanded group adjusts its
1020 * @param expanded whether the group is expanded.
1022 public void updateHeaderForExpansion(boolean expanded) { argument
1024 if (expanded) {
H A DNotificationStackScrollLayout.java248 * when over scrolling on a expanded card.
261 * The maximum scrollPosition which we are allowed to reach when a notification was expanded.
460 // Blocking helper manager wants to know the expanded state, update as well.
870 * @param height the expanded height of the panel
989 * intrinsic height, which also includes whether the notification is system expanded and
1219 // In this case the group is expanded and showing the menu for the
1332 // expanded even after we went back to keyguard. An example of this happens if
1541 // If the leavebehind is expanded we clear it on the next up event, otherwise we
2564 * @return Whether a fling performed on the top overscroll edge lead to the expanded
2889 * not expanded
4228 onGroupExpansionChanged(ExpandableNotificationRow changedRow, boolean expanded) argument
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationUsageStats.java816 * became visible and expanded; -1 if it was never visibly expanded.
824 /** Accumulated visible expanded time. */
826 /** Number of times the notification has been expanded by the user. */
853 // Add incomplete expanded airtime if currently shown.
911 public void onExpansionChanged(boolean userAction, boolean expanded) { argument
912 isExpanded = expanded;
922 // expanded and visible
930 // not-expanded or not-visible
H A DNotificationManagerService.java842 boolean userAction, boolean expanded) {
846 r.stats.onExpansionChanged(userAction, expanded);
851 .setType(expanded ? MetricsEvent.TYPE_DETAIL
854 if (expanded && userAction) {
858 userAction ? 1 : 0, expanded ? 1 : 0,

Completed in 587 milliseconds

123