Autoscale buttons

This commit is contained in:
khanhduytran0 2020-11-20 07:02:33 +07:00
parent 6229a66d01
commit d87f0d464d

View File

@ -1104,7 +1104,7 @@ public class BaseMainActivity extends LoggableActivity implements OnTouchListene
protected Button findButton(int id) {
Button button = (Button) findViewById(id);
button.setWidth((int) (button.getWidth() * LauncherPreferences.PREF_BUTTONSIZE));
button.setWidth((int) (button.getWidth() * Tools.currentDisplayMetrics.scaledDensity));
button.setHeight((int) (button.getHeight() * LauncherPreferences.PREF_BUTTONSIZE));
button.setOnTouchListener(this);
button.setFocusable(false);