Fixed drawer width in 3 column mode

pull/180/head
M66B 4 years ago
parent 5c41bbd755
commit d1fd862785

@ -232,7 +232,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
int screenWidth = Math.min(dm.widthPixels, dm.heightPixels);
drawerWidth = screenWidth - actionBarHeight;
} else
drawerWidth = dm.widthPixels / 3;
drawerWidth = Helper.dp2pixels(this, 300);
ViewGroup.LayoutParams lparam = drawerContainer.getLayoutParams();
lparam.width = drawerWidth;

Loading…
Cancel
Save