mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
- icons and widgets on home screens can be "dimmed" - celllayout no longer renders a dimmed version of itself, but instead its children make dimmed versions of themselves - celllayout no longer always takes up full size of workspace, in landscape mode neighboring screens (celllayouts) are visible - on xlarge devices, in landscape mode side screens are "dimmed" - moved holographic outline helper to its own file - fixed bug where mini-screens were still able to scroll left/right Change-Id: I9e85ab4147edfae1e7525c3d11d42be3fabf4f6d
23 lines
663 B
Plaintext
23 lines
663 B
Plaintext
-keep class com.android.launcher2.Launcher {
|
|
public void previousScreen(android.view.View);
|
|
public void nextScreen(android.view.View);
|
|
public void launchHotSeat(android.view.View);
|
|
public void onClickSearchButton(android.view.View);
|
|
public void onClickConfigureButton(android.view.View);
|
|
public void onClickAllAppsButton(android.view.View);
|
|
public void onClickAppMarketButton(android.view.View);
|
|
}
|
|
|
|
-keep class com.android.launcher2.CellLayout {
|
|
public float getBackgroundAlpha();
|
|
public void setBackgroundAlpha(float);
|
|
}
|
|
|
|
-keep class com.android.launcher2.AllApps3D$Defines {
|
|
*;
|
|
}
|
|
|
|
-keep class com.android.launcher2.ClippedImageView {
|
|
*;
|
|
}
|