Github user misakuo commented on a diff in the pull request:
https://github.com/apache/incubator-weex/pull/788#discussion_r145012253
--- Diff:
android/sdk/src/main/java/com/taobao/weex/ui/component/list/BasicListComponent.java
---
@@ -236,6 +245,9 @@ protected T initComponentHostView(@NonNull Context
context) {
if (transforms != null) {
bounceRecyclerView.getInnerView().addItemDecoration(RecyclerTransform.parseTransforms(getOrientation(),
transforms));
}
+
if(getDomObject().getAttrs().get(Constants.Name.KEEP_POSITION_LAYOUT_DELAY) !=
null){
--- End diff --
Need to judge whether it is null?
---