Skip to content

Commit 27805d8

Browse files
committed
Fix scrollableView height Ti.UI.SIZE
1 parent d4685ee commit 27805d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

android/src/ru/netris/mobile/scrollableview/widget/TiUIScrollableView.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ public TiUIScrollableView(ScrollableViewProxy proxy)
7878
mPager.setClipToPadding(TiConvert.toBoolean(proxy.getProperty(TiScrollableviewModule.PROPERTY_CLIP_VIEWS)));
7979
}
8080
TiCompositeLayout.LayoutParams params = new TiCompositeLayout.LayoutParams();
81-
params.autoFillsHeight = true;
82-
params.autoFillsWidth = true;
81+
params.autoFillsHeight = false;
82+
params.autoFillsWidth = false;
8383
mContainer.addView(mPager, params);
8484

8585
setNativeView(mContainer);

0 commit comments

Comments
 (0)