以下哪种方法最适合从本地数据库中获取图像和数据并显示在片段上。
型号 1:
<ListFragment>
<ListItem>Image+Data(below image)</ListItem>
<ListItem>Image+Data(below image)</ListItem>
<ListItem>Image+Data(below image)</ListItem>
<ListItem>Image+Data(below image)</ListItem>
<ListItem>Image+Data(below image)</ListItem>
<ListItem>Image+Data(below image)</ListItem>
<ListItem>Image+Data(below image)</ListItem>
<ListItem>Image+Data(below image)</ListItem>
</ListFragment>
型号 2:
<Fragment>
<GridLayout>
<RelativeLayout>Image+Data(below image)</RelativeLayout>
<RelativeLayout>Image+Data(below image)</RelativeLayout>
<RelativeLayout>Image+Data(below image)</RelativeLayout>
<RelativeLayout>Image+Data(below image)</RelativeLayout>
<RelativeLayout>Image+Data(below image)</RelativeLayout>
<RelativeLayout>Image+Data(below image)</RelativeLayout>
<RelativeLayout>Image+Data(below image)</RelativeLayout>
<RelativeLayout>Image+Data(below image)</RelativeLayout>
</GridLayout>
<Fragment>
笔记 :
我尝试使用 GridLayout 的原因如下,
- 因为在平板电脑横向模式下显示多列
但是 Gridlayout 没有适配器,所以我认为动态添加子视图可能很复杂。