我想创建一个项目,其形式为:
View 1:
View 2: (oriental:Horizontal)
View 2.1:(child of View 2)
View 2.2:(child of View 2)
View 3: (oriental:Horizontal)
View 3.1:(child of View 3)
View 3.2:(child of View 3)
View 3.3:(child of View 3)
Horizontally Oriented.
我想使用 Swipe 来Slider View
遵循 order:V1 -> V2.1 -> V2.2 -> V3.1 -> V3.2...(swipe right)
和V1 <- V2.1 <- V2.1 <- V3.1 <- V3.2 (swipe left)
.
我曾经使用过ViewPages(android.support.v4)
:
1 代表 V1 + V2 + V3 1 代表 V2.1 + V2.2 1 代表 V3.1 + V3.2 + V3.3
但我只能在之间滑动V1 - V2 - V3
(不能随意滑动:|)。
我该如何解决这个问题?
或者有什么方法可以在不使用 ViewPager 的情况下解决它