Android: add loop in slider

This commit is contained in:
王劲鹏 2020-04-10 10:33:15 +08:00 committed by osborn
parent c44c3e5353
commit 4bb9df4dbb
3 changed files with 91 additions and 30 deletions

View File

@ -71,8 +71,12 @@ class SlideAdapter extends RecyclerView.Adapter<SlideAdapter.DoricViewHolder> {
@Override @Override
public int getItemCount() { public int getItemCount() {
if (loop) {
return itemCount + 2;
} else {
return itemCount; return itemCount;
} }
}
@Override @Override
public int getItemViewType(int position) { public int getItemViewType(int position) {
@ -86,11 +90,24 @@ class SlideAdapter extends RecyclerView.Adapter<SlideAdapter.DoricViewHolder> {
} }
private JSValue getItemModel(final int position) { private JSValue getItemModel(final int position) {
String id = itemValues.get(position); int index;
if (loop) {
if (position == 0) {
index = itemCount - 1;
} else if (position == itemCount + 1) {
index = 0;
} else {
index = position - 1;
}
} else {
index = position;
}
String id = itemValues.get(index);
if (TextUtils.isEmpty(id)) { if (TextUtils.isEmpty(id)) {
AsyncResult<JSDecoder> asyncResult = sliderNode.callJSResponse( AsyncResult<JSDecoder> asyncResult = sliderNode.callJSResponse(
"renderBunchedItems", "renderBunchedItems",
position, index,
batchCount); batchCount);
try { try {
JSDecoder jsDecoder = asyncResult.synchronous().get(); JSDecoder jsDecoder = asyncResult.synchronous().get();
@ -100,10 +117,10 @@ class SlideAdapter extends RecyclerView.Adapter<SlideAdapter.DoricViewHolder> {
for (int i = 0; i < jsArray.size(); i++) { for (int i = 0; i < jsArray.size(); i++) {
JSObject itemModel = jsArray.get(i).asObject(); JSObject itemModel = jsArray.get(i).asObject();
String itemId = itemModel.getProperty("id").asString().value(); String itemId = itemModel.getProperty("id").asString().value();
itemValues.put(i + position, itemId); itemValues.put(i + index, itemId);
sliderNode.setSubModel(itemId, itemModel); sliderNode.setSubModel(itemId, itemModel);
} }
return sliderNode.getSubModel(itemValues.get(position)); return sliderNode.getSubModel(itemValues.get(index));
} }
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();

View File

@ -65,8 +65,18 @@ public class SliderNode extends SuperNode<RecyclerView> {
public void onScrollStateChanged(@NonNull RecyclerView recyclerView, int newState) { public void onScrollStateChanged(@NonNull RecyclerView recyclerView, int newState) {
if (newState == RecyclerView.SCROLL_STATE_IDLE) { if (newState == RecyclerView.SCROLL_STATE_IDLE) {
View view = snapHelper.findSnapView(layoutManager); View view = snapHelper.findSnapView(layoutManager);
if (view != null && !TextUtils.isEmpty(onPageSlidedFuncId)) { if (view != null) {
int position = layoutManager.getPosition(view); int position = layoutManager.getPosition(view);
if (slideAdapter.loop) {
if (position == 0) {
recyclerView.scrollToPosition(slideAdapter.itemCount);
} else if (position == slideAdapter.itemCount + 1) {
recyclerView.scrollToPosition(1);
}
}
if (!TextUtils.isEmpty(onPageSlidedFuncId)) {
if (position != lastPosition) { if (position != lastPosition) {
callJSResponse(onPageSlidedFuncId, position); callJSResponse(onPageSlidedFuncId, position);
} }
@ -74,6 +84,7 @@ public class SliderNode extends SuperNode<RecyclerView> {
} }
} }
} }
}
@Override @Override
public void onScrolled(@NonNull RecyclerView recyclerView, int dx, int dy) { public void onScrolled(@NonNull RecyclerView recyclerView, int dx, int dy) {
@ -154,6 +165,14 @@ public class SliderNode extends SuperNode<RecyclerView> {
case "loop": case "loop":
boolean loop = prop.asBoolean().value(); boolean loop = prop.asBoolean().value();
slideAdapter.loop = loop; slideAdapter.loop = loop;
if (loop) {
mView.post(new Runnable() {
@Override
public void run() {
mView.scrollToPosition(1);
}
});
}
break; break;
default: default:
super.blend(view, name, prop); super.blend(view, name, prop);

View File

@ -1,4 +1,4 @@
import { Group, Panel, List, text, gravity, Color, Stack, LayoutSpec, list, NativeCall, listItem, log, vlayout, Gravity, hlayout, slider, slideItem, image, layoutConfig, ScaleType } from "doric"; import { Group, Panel, text, gravity, Gravity, Color, LayoutSpec, vlayout, slider, slideItem, image, layoutConfig, ScaleType, switchView, hlayout } from "doric";
import { colors } from "./utils"; import { colors } from "./utils";
const imageUrls = [ const imageUrls = [
@ -15,22 +15,8 @@ const imageUrls = [
@Entry @Entry
class SliderPanel extends Panel { class SliderPanel extends Panel {
build(rootView: Group): void { build(rootView: Group): void {
rootView.addChild(vlayout([ let pager = slider({
text({ itemCount: imageUrls.length,
text: "Gallery",
layoutConfig: {
widthSpec: LayoutSpec.MOST,
heightSpec: LayoutSpec.JUST,
},
textSize: 30,
textColor: Color.WHITE,
backgroundColor: colors[1],
textAlignment: gravity().center(),
height: 50,
}),
slider({
itemCount: 100,
loop: true,
renderPage: (idx) => { renderPage: (idx) => {
return slideItem(image({ return slideItem(image({
imageUrl: imageUrls[idx % imageUrls.length], imageUrl: imageUrls[idx % imageUrls.length],
@ -48,7 +34,46 @@ class SliderPanel extends Panel {
heightSpec: LayoutSpec.MOST, heightSpec: LayoutSpec.MOST,
weight: 1, weight: 1,
}, },
})
rootView.addChild(vlayout([
text({
text: "Gallery",
layoutConfig: {
widthSpec: LayoutSpec.MOST,
heightSpec: LayoutSpec.JUST,
},
textSize: 30,
textColor: Color.WHITE,
backgroundColor: colors[1],
textAlignment: gravity().center(),
height: 50,
}), }),
hlayout([
text({
text: "Loop",
layoutConfig: {
widthSpec: LayoutSpec.FIT,
heightSpec: LayoutSpec.JUST,
},
textSize: 20,
textColor: Color.BLACK,
textAlignment: gravity().center(),
height: 50,
}),
switchView({
state: false,
onSwitch: (state) => {
pager.loop = state
},
}),
], {
layoutConfig: layoutConfig().most().configHeight(LayoutSpec.FIT),
gravity: gravity().center(),
space: 10,
backgroundColor: Color.RED,
}),
pager,
]).also(it => { ]).also(it => {
it.layoutConfig = { it.layoutConfig = {
widthSpec: LayoutSpec.MOST, widthSpec: LayoutSpec.MOST,