答案 0 :(得分:1)
使用这个概念
Linear Layout
是包含orientation="vertical"
......
内部Linear
布局ImageView
和GridView
.......
并使用custom adapter
作为GridView
.....
看起来像你的问题一样Image and Text GridView
这就是........
享受编码........
答案 1 :(得分:0)
你可以试试这个。
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/scrollView2" >
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="match_parent"
android:layout_height="150dp"
android:id="@+id/imageView3"
android:background="@drawable/pd5"/>
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="0dp"
android:layout_height="120dp"
android:id="@+id/imageView4"
android:layout_weight="1"
android:background="@drawable/pd2"
android:layout_margin="5dp" />
<ImageView
android:layout_width="0dp"
android:layout_height="120dp"
android:id="@+id/imageView5"
android:layout_weight="1"
android:background="@drawable/pd3"
android:layout_margin="5dp" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="0dp"
android:layout_height="120dp"
android:id="@+id/imageView6"
android:layout_weight="1"
android:background="@drawable/pd2"
android:layout_margin="5dp" />
<ImageView
android:layout_width="0dp"
android:layout_height="120dp"
android:id="@+id/imageView7"
android:layout_weight="1"
android:background="@drawable/pd3"
android:layout_margin="5dp" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="0dp"
android:layout_height="120dp"
android:id="@+id/imageView8"
android:layout_weight="1"
android:background="@drawable/pd2"
android:layout_margin="5dp" />
<ImageView
android:layout_width="0dp"
android:layout_height="120dp"
android:id="@+id/imageView9"
android:layout_weight="1"
android:background="@drawable/pd3"
android:layout_margin="5dp" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>
对你来说很有帮助。