是否可以使用在 Android 上创建类似 pinterest 的布局GridView
?我想使用创建图片库,GridView
但我不确定它是否是好的解决方案。我不想创建三个LinearLayouts
(我认为这个解决方案不好:Pinterest style listview or gridview in android)
有任何想法吗 ;)?
是否可以使用在 Android 上创建类似 pinterest 的布局GridView
?我想使用创建图片库,GridView
但我不确定它是否是好的解决方案。我不想创建三个LinearLayouts
(我认为这个解决方案不好:Pinterest style listview or gridview in android)
有任何想法吗 ;)?
我也一直在玩这个(使用LinearLayout),但最后我在内存消耗方面遇到了很多问题(特别是当我不得不重新加载项目时)。我选择了使用两个同步ListViews的简单解决方案。这样我可以利用内部缓存,这很有帮助。为此,我必须使用同步列表的OnTouchListener和OnScrollListener 。这是一个例子:
创建布局如下
<ScrollView...>
<LinearLayout....
android:id="@+id/linear1"
orientation="horizontal">
<LinearLayout....
android:id="@+id/linear2"
android:layout_weight="0.33"
orientation="vertical">
<LinearLayout....
android:id="@+id/linear3"
android:layout_weight="0.33"
orientation="vertical">
<LinearLayout....
android:layout_weight="0.33"
orientation="vertical">
</LinearLayout>
</ScrollView>
现在ImageView
在布局中动态添加
linear1 = (LinearLayout) findViewById(R.id.linear1);
linear2 = (LinearLayout) findViewById(R.id.linear2);
linear3 = (LinearLayout) findViewById(R.id.linear3);
for(int i=0;i<n;i++)
{
ImageView iv = new ImageView(this);
iv.setImageResource(R.id.icon);
int j = count % 3; <----
if(j==0)
linear1.addView(iv);
else if(j==1)
linear2.addView(iv);
else
linear3.addView(iv);
}
输出:
一些用于实现类似 Pinterest 的网格视图的有用库:
对于这个问题的最近访问者,我建议使用RecyclerView
with StaggedGridLayoutManager
。它具有足够的功能和灵活性。
用于同步滚动 2 个 ListView 的独立助手:https ://gist.github.com/yanchenko/6179793
我正在使用这个库:https ://github.com/huewu/PinterestLikeAdapterView 。
它工作得很好。我唯一的问题是setOnItemClickListener
andsetOnItemLongClickListener
有点错误,所以我直接在 convertView 上设置了侦听器。
该库来自 Etsy 应用程序: https ://github.com/etsy/AndroidStaggeredGrid