OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bubbleWidth
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
MessageBubbleBackground.java
38
int
bubbleWidth
= getMeasuredWidth() - widthPadding;
41
bubbleWidth
= Math.min(maxWidth,
42
(int) (Math.ceil(
bubbleWidth
/ (float) mSnapWidthPixels) * mSnapWidthPixels));
44
MeasureSpec.makeMeasureSpec(
bubbleWidth
+ widthPadding, MeasureSpec.EXACTLY),
/packages/apps/Settings/src/com/android/settings/display/
MessageBubbleBackground.java
38
int
bubbleWidth
= getMeasuredWidth() - widthPadding;
41
bubbleWidth
= Math.min(maxWidth,
42
(int) (Math.ceil(
bubbleWidth
/ (float) mSnapWidthPixels) * mSnapWidthPixels));
44
MeasureSpec.makeMeasureSpec(
bubbleWidth
+ widthPadding, MeasureSpec.EXACTLY),
Completed in 89 milliseconds