mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
Padding the new market button.
Change-Id: I293859d4041a05619cb144a82aa1122a70403719
This commit is contained in:
@@ -39,8 +39,13 @@
|
||||
<!-- QSB -->
|
||||
<dimen name="toolbar_button_vertical_padding">0dip</dimen>
|
||||
<dimen name="toolbar_button_horizontal_padding">12dip</dimen>
|
||||
<!-- External toolbar icon size (for bounds) -->
|
||||
<dimen name="toolbar_external_icon_width">36dp</dimen>
|
||||
<dimen name="toolbar_external_icon_height">36dp</dimen>
|
||||
|
||||
<!-- AllApps/Customize/AppsCustomize -->
|
||||
<!-- The height of the tab bar -- if this changes, we should update the
|
||||
external icon width/height above to compensate -->
|
||||
<dimen name="apps_customize_tab_bar_height">56dp</dimen>
|
||||
<dimen name="app_icon_size">48dp</dimen>
|
||||
<!-- The width can be 72dp because we don't have L/R padding -->
|
||||
|
||||
@@ -2458,13 +2458,19 @@ public final class Launcher extends Activity
|
||||
int buttonId, ComponentName activityName, int fallbackDrawableId) {
|
||||
TextView button = (TextView) findViewById(buttonId);
|
||||
Drawable toolbarIcon = getExternalPackageToolbarIcon(activityName);
|
||||
Resources r = getResources();
|
||||
int w = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_width);
|
||||
int h = r.getDimensionPixelSize(R.dimen.toolbar_external_icon_height);
|
||||
|
||||
// If we were unable to find the icon via the meta-data, use a generic one
|
||||
if (toolbarIcon == null) {
|
||||
button.setCompoundDrawablesWithIntrinsicBounds(fallbackDrawableId, 0, 0, 0);
|
||||
toolbarIcon = r.getDrawable(fallbackDrawableId);
|
||||
toolbarIcon.setBounds(0, 0, w, h);
|
||||
button.setCompoundDrawables(toolbarIcon, null, null, null);
|
||||
return null;
|
||||
} else {
|
||||
button.setCompoundDrawablesWithIntrinsicBounds(toolbarIcon, null, null, null);
|
||||
toolbarIcon.setBounds(0, 0, w, h);
|
||||
button.setCompoundDrawables(toolbarIcon, null, null, null);
|
||||
return toolbarIcon.getConstantState();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user