を使用して次のビューを再作成するにはどうすればよいですかGridView
。
リスト内のアイテムの数は動的です。
これは単一の GridView ではなく、複数のレイアウトの組み合わせだと思います。LinearLayout を作成し、コンテンツに応じて、どのレイアウトを行にするかを決定するだけです。
表示されるレイアウトを取得するには、次のようなものを使用できます。
<LinearLayout android:orientation="vertical">
<!-- First row -->
<View />
<!-- Second row -->
<LinearLayout android:orientation="horizontal" />
<!-- Third row -->
<LinearLayout android:orientation="horizontal" />
<!-- Fourth row -->
<View />
</LinearLayout>
ページ効果も必要な場合は、ViewPager を使用できます
http://android-developers.blogspot.it/2011/08/horizontal-view-swiping-with-viewpager.html