Skip to content

Instantly share code, notes, and snippets.

View michelelacorte's full-sized avatar

Michele Lacorte michelelacorte

View GitHub Profile
@michelelacorte
michelelacorte / shortcutsAnim.txt
Last active November 9, 2017 10:33
New App Shortcuts animation (PopupContainerWithArrow.java class)
/*Code from commit
https://github.com/Deletescape-Media/Lawnchair/blob/alpha/app/src/main/java/ch/deletescape/lawnchair/popup/PopupContainerWithArrow.java
*/
private Point startPoint(int y) {
int x;
x = mIsLeftAligned != mIsRtl ? R.dimen.popup_arrow_horizontal_center_start : R.dimen.popup_arrow_horizontal_center_end;
x = getResources().getDimensionPixelSize(x);
if (!mIsLeftAligned) {
x = getMeasuredWidth() - x;
}