mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-18 18:28:20 +00:00
- Fixing issue with fast scroller not fitting name width. - Refactoring fast scrolling/scroll bar code out of base recycler view - Adding animations to fast scroller to match design - Smooth scrolling when jumping between app rows - Fixing issue with fast scroller jumping when you first pick it up - Fixing issue with wrong background paddings being used Bug: 21874346 Bug: 22031923 Change-Id: I9f011b1f375751f437604b900e95a2942d3f4601
66 lines
1.6 KiB
Plaintext
66 lines
1.6 KiB
Plaintext
-keep class com.android.launcher3.BaseRecyclerViewFastScrollBar {
|
|
public void setWidth(int);
|
|
public int getWidth();
|
|
public void setTrackAlpha(int);
|
|
public int getTrackAlpha();
|
|
}
|
|
|
|
-keep class com.android.launcher3.BaseRecyclerViewFastScrollPopup {
|
|
public void setAlpha(float);
|
|
public float getAlpha();
|
|
}
|
|
|
|
-keep class com.android.launcher3.BubbleTextView {
|
|
public void setFastScrollFocus(float);
|
|
public float getFastScrollFocus();
|
|
}
|
|
|
|
-keep class com.android.launcher3.ButtonDropTarget {
|
|
public int getTextColor();
|
|
}
|
|
|
|
-keep class com.android.launcher3.CellLayout {
|
|
public float getBackgroundAlpha();
|
|
public void setBackgroundAlpha(float);
|
|
}
|
|
|
|
-keep class com.android.launcher3.CellLayout$LayoutParams {
|
|
public void setWidth(int);
|
|
public int getWidth();
|
|
public void setHeight(int);
|
|
public int getHeight();
|
|
public void setX(int);
|
|
public int getX();
|
|
public void setY(int);
|
|
public int getY();
|
|
}
|
|
|
|
-keep class com.android.launcher3.DragLayer$LayoutParams {
|
|
public void setWidth(int);
|
|
public int getWidth();
|
|
public void setHeight(int);
|
|
public int getHeight();
|
|
public void setX(int);
|
|
public int getX();
|
|
public void setY(int);
|
|
public int getY();
|
|
}
|
|
|
|
-keep class com.android.launcher3.FastBitmapDrawable {
|
|
public int getBrightness();
|
|
public void setBrightness(int);
|
|
}
|
|
|
|
-keep class com.android.launcher3.MemoryDumpActivity {
|
|
*;
|
|
}
|
|
|
|
-keep class com.android.launcher3.PreloadIconDrawable {
|
|
public float getAnimationProgress();
|
|
public void setAnimationProgress(float);
|
|
}
|
|
|
|
-keep class com.android.launcher3.Workspace {
|
|
public float getBackgroundAlpha();
|
|
public void setBackgroundAlpha(float);
|
|
} |