Repository: incubator-weex Updated Branches: refs/heads/master 05db97e17 -> f855f909a
[WEEX-415][Android] fix waterfall layout scroll to top. Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/f855f909 Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/f855f909 Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/f855f909 Branch: refs/heads/master Commit: f855f909aa9b129ca1ff642c93d5e925ecabd71e Parents: 05db97e Author: 驱影 <[email protected]> Authored: Tue May 29 22:45:32 2018 +0800 Committer: 驱影 <[email protected]> Committed: Tue May 29 22:45:32 2018 +0800 ---------------------------------------------------------------------- .../java/com/taobao/weex/ui/component/list/WXListComponent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/f855f909/android/sdk/src/main/java/com/taobao/weex/ui/component/list/WXListComponent.java ---------------------------------------------------------------------- diff --git a/android/sdk/src/main/java/com/taobao/weex/ui/component/list/WXListComponent.java b/android/sdk/src/main/java/com/taobao/weex/ui/component/list/WXListComponent.java index 1db34a4..0439345 100644 --- a/android/sdk/src/main/java/com/taobao/weex/ui/component/list/WXListComponent.java +++ b/android/sdk/src/main/java/com/taobao/weex/ui/component/list/WXListComponent.java @@ -180,7 +180,7 @@ public class WXListComponent extends BasicListComponent<BounceRecyclerView> { } @WXComponentProp(name = Constants.Name.COLUMN_WIDTH) - public void setColumnWidth(int columnWidth) { + public void setColumnWidth(float columnWidth) { if(columnWidth != mColumnWidth){ markComponentUsable(); updateRecyclerAttr();
