mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
- This CL fixes an old assumption we had about the height of rows in AllApps, and ensures that we account for the difference in height between the predictive icons and the normal icons. - In addition, we refactor FastBitmapDrawable to have multiple states, which it manages in drawing itself, including the press state and fast scroll focus states. And we also refactor some of the fast scroll logic in the all apps recycler view out to its own class. Change-Id: I1988159b2767df733bbbfc7dc601859cde6c9943
73 lines
1.8 KiB
Plaintext
73 lines
1.8 KiB
Plaintext
-keep,allowshrinking,allowoptimization class com.android.launcher3.** {
|
|
*;
|
|
}
|
|
|
|
-keep class com.android.launcher3.allapps.AllAppsBackgroundDrawable {
|
|
public void setAlpha(int);
|
|
public int getAlpha();
|
|
}
|
|
|
|
-keep class com.android.launcher3.BaseRecyclerViewFastScrollBar {
|
|
public void setThumbWidth(int);
|
|
public int getThumbWidth();
|
|
public void setTrackWidth(int);
|
|
public int getTrackWidth();
|
|
}
|
|
|
|
-keep class com.android.launcher3.BaseRecyclerViewFastScrollPopup {
|
|
public void setAlpha(float);
|
|
public float getAlpha();
|
|
}
|
|
|
|
-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 void setDesaturation(float);
|
|
public float getDesaturation();
|
|
public void setBrightness(float);
|
|
public float getBrightness();
|
|
}
|
|
|
|
-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);
|
|
}
|