OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ExpandableView
(Results
1 - 16
of
16
) sorted by null
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackScrollState.java
25
import com.android.systemui.statusbar.
ExpandableView
;
39
private WeakHashMap<
ExpandableView
, ExpandableViewState> mStateMap;
53
ExpandableView
child = (
ExpandableView
) mHostView.getChildAt(i);
70
private void resetViewState(
ExpandableView
view) {
104
ExpandableView
child = (
ExpandableView
) mHostView.getChildAt(i);
StackScrollAlgorithm.java
28
import com.android.systemui.statusbar.
ExpandableView
;
101
ExpandableView
v = algorithmState.visibleChildren.get(i);
136
ExpandableView
child = algorithmState.visibleChildren.get(i);
251
ExpandableView
lastView = null;
261
ExpandableView
v = (
ExpandableView
) hostView.getChildAt(i);
341
ExpandableView
v) {
371
ExpandableView
child = algorithmState.visibleChildren.get(i);
405
ExpandableView
child) {
503
if (child instanceof
ExpandableView
) {
[
all
...]
ExpandableViewState.java
28
import com.android.systemui.statusbar.
ExpandableView
;
133
* Applies a {@link ExpandableViewState} to a {@link
ExpandableView
}.
138
if (view instanceof
ExpandableView
) {
139
ExpandableView
expandableView
= (
ExpandableView
) view;
141
int height =
expandableView
.getActualHeight();
146
expandableView
.setActualHeight(newHeight, false /* notifyListeners */);
149
float shadowAlpha =
expandableView
.getShadowAlpha();
154
expandableView
.setShadowAlpha(newShadowAlpha)
[
all
...]
StackStateAnimator.java
30
import com.android.systemui.statusbar.
ExpandableView
;
127
final
ExpandableView
child = (
ExpandableView
) mHostLayout.getChildAt(i);
148
private void initAnimationProperties(StackScrollState finalState,
ExpandableView
child,
167
private void adaptDurationWhenGoingToFullShade(
ExpandableView
child,
183
private boolean applyWithoutAnimation(
ExpandableView
child, ExpandableViewState viewState,
207
final
ExpandableView
child = (
ExpandableView
) mHostLayout.getChildAt(i);
346
final
ExpandableView
changingView = (
ExpandableView
) event.changingView
[
all
...]
NotificationStackScrollLayout.java
78
import com.android.systemui.statusbar.
ExpandableView
;
110
ExpandableView
.OnHeightChangedListener, NotificationGroupManager.OnGroupChangeListener,
197
private
ExpandableView
.OnHeightChangedListener mOnHeightChangedListener;
306
private ArrayList<
ExpandableView
> mTmpSortedChildren = new ArrayList<>();
332
private Comparator<
ExpandableView
> mViewPositionComparator = new Comparator<
ExpandableView
>() {
334
public int compare(
ExpandableView
view,
ExpandableView
otherView) {
543
private void notifyHeightChangeListener(
ExpandableView
view) {
660
ExpandableView
child = (ExpandableView) getChildAt(i)
[
all
...]
AmbientState.java
25
import com.android.systemui.statusbar.
ExpandableView
;
355
* @param
expandableView
the view to check
357
public boolean isAboveShelf(
ExpandableView
expandableView
) {
358
if (!(
expandableView
instanceof ExpandableNotificationRow)) {
359
return
expandableView
.isAboveShelf();
361
ExpandableNotificationRow row = (ExpandableNotificationRow)
expandableView
;
368
public boolean isDozingAndNotPulsing(
ExpandableView
view) {
ViewState.java
31
import com.android.systemui.statusbar.
ExpandableView
;
221
if (!(view instanceof
ExpandableView
) || !((
ExpandableView
) view).willBeGone()) {
272
if (child instanceof
ExpandableView
) {
274
alphaChanging &= !((
ExpandableView
) child).willBeGone();
/frameworks/base/packages/SystemUI/src/com/android/systemui/
ExpandHelper.java
36
import com.android.systemui.statusbar.
ExpandableView
;
42
ExpandableView
getChildAtRawPosition(float x, float y);
43
ExpandableView
getChildAtPosition(float x, float y);
48
int getMaxExpandHeight(
ExpandableView
view);
97
private
ExpandableView
mResizedView;
140
ExpandableView
mView;
143
public void setView(
ExpandableView
v) {
210
private
ExpandableView
findView(float x, float y) {
211
ExpandableView
v;
394
private boolean isFullyExpanded(
ExpandableView
underFocus)
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DragDownHelper.java
56
private
ExpandableView
mStartingChild;
168
private void handleExpansion(float heightDelta,
ExpandableView
child) {
187
private void cancelExpansion(final
ExpandableView
child) {
230
private
ExpandableView
findView(float x, float y) {
ExpandableView.java
36
public abstract class
ExpandableView
extends FrameLayout {
53
public
ExpandableView
(Context context, AttributeSet attrs) {
533
void onHeightChanged(
ExpandableView
view, boolean needsAnimation);
540
void onReset(
ExpandableView
view);
StackScrollerDecorView.java
30
public abstract class StackScrollerDecorView extends
ExpandableView
{
ExpandableOutlineView.java
30
* Like {@link
ExpandableView
}, but setting an outline for the height and clipping.
32
public abstract class ExpandableOutlineView extends
ExpandableView
{
NotificationShelf.java
256
ExpandableView
child = (
ExpandableView
) mHostLayout.getChildAt(notificationIndex);
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
HeadsUpTouchHelper.java
25
import com.android.systemui.statusbar.
ExpandableView
;
78
ExpandableView
child = mStackScroller.getChildAtRawPosition(x, y);
NotificationPanelView.java
60
import com.android.systemui.statusbar.
ExpandableView
;
78
ExpandableView
.OnHeightChangedListener,
496
ExpandableView
child = (
ExpandableView
) mNotificationStackScroller.getChildAt(i);
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
RemoteInputView.java
56
import com.android.systemui.statusbar.
ExpandableView
;
370
if (mScrollContainerChild == null && p instanceof
ExpandableView
) {
Completed in 220 milliseconds