OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getActualHeight
(Results
1 - 13
of
13
) sorted by null
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableView.java
137
public int
getActualHeight
() {
301
outRect.bottom = (int) (outRect.top + getTranslationY() +
getActualHeight
());
312
outRect.bottom = outRect.top +
getActualHeight
();
327
if (top >=
getActualHeight
()) {
328
top =
getActualHeight
() - 1;
330
mClipRect.set(0, top, getWidth(),
getActualHeight
() + getExtraBottomPadding());
368
return super.hasOverlappingRendering() &&
getActualHeight
() <= getHeight();
442
* A listener notifying when {@link #
getActualHeight
} changes.
ExpandableOutlineView.java
44
Math.max(
getActualHeight
(), mClipTopAmount));
NotificationBackgroundView.java
114
public int
getActualHeight
() {
DragDownHelper.java
183
if (child.
getActualHeight
() == child.getCollapsedHeight()) {
188
child.
getActualHeight
(), child.getCollapsedHeight());
ActivatableNotificationView.java
265
if (mDownY >
getActualHeight
()) {
317
int heightHalf = mBackgroundNormal.
getActualHeight
()/2;
522
background.setPivotY(
getActualHeight
() / 2f);
689
mAnimationTranslationY = translationDirection *
getActualHeight
();
792
final int actualHeight =
getActualHeight
();
[
all
...]
NotificationGuts.java
417
public int
getActualHeight
() {
ExpandableNotificationRow.java
867
mGuts.setActualHeight(
getActualHeight
());
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
HeadsUpTouchHelper.java
105
int expandedHeight = mPickedChild.
getActualHeight
();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackStateAnimator.java
209
boolean heightChanging = viewState.height != child.
getActualHeight
();
484
ValueAnimator animator = ValueAnimator.ofInt(child.
getActualHeight
(), newEndValue);
528
child.setTag(TAG_START_HEIGHT, child.
getActualHeight
());
[
all
...]
StackScrollState.java
139
int height = view.
getActualHeight
();
NotificationStackScrollLayout.java
325
float endY = view.getTranslationY() + view.
getActualHeight
();
326
float otherEndY = otherView.getTranslationY() + otherView.
getActualHeight
();
[
all
...]
NotificationChildrenContainer.java
659
float bottom = childTop + slidingChild.
getActualHeight
();
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
ExpandHelper.java
146
return mView.
getActualHeight
();
Completed in 89 milliseconds