Fixing wrong method name

Change-Id: Idabe5d8ee41f31d30dcbe03aa626f7b39f713c14
This commit is contained in:
Sunny Goyal
2016-04-04 17:51:04 -07:00
parent 48d9602695
commit e27815e33f
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ public abstract class BaseContainerView extends FrameLayout {
super(context, attrs, defStyleAttr);
int width = ((Launcher) context).getDeviceProfile().availableWidthPx;
mHorizontalPadding = DeviceProfile.getMaxContainerWidth(context, width);
mHorizontalPadding = DeviceProfile.getContainerPadding(context, width);
TypedArray a = context.obtainStyledAttributes(attrs,
R.styleable.BaseContainerView, defStyleAttr, 0);