我需要在另一个GridView上面使用Gridview。
借助于此:how to set Multiple gridview in same layout in android?
我可以在一个布局中设置两个Gridview。 我在SwipeRefreshLayout中都需要它们!
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipe_container"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:baselineAligned="false">
<GridView
android:id="@+id/GridView1"
android:layout_width="465dp"
android:layout_height="101dp"
android:layout_marginBottom="100dp"
android:layout_weight="1"
android:numColumns="1"
android:padding="1dp" />
<GridView
android:id="@+id/GridView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="100dp"
android:layout_weight="1"
android:footerDividersEnabled="false"
android:numColumns="3"
android:padding="1dp" />
</LinearLayout>
</android.support.v4.widget.SwipeRefreshLayout>
但他们彼此相邻,我无法将其中一个设置为另一个。 你可以在图片中看到我的问题。
如果你知道如何将一个放在另一个之上,那么两个都填写宽度,请帮助我。
答案 0 :(得分:1)
更改您的XML属性,如下所示:
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipe_container"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout android:layout_height="match_parent"
android:layout_width="match_parent"
android:baselineAligned="false"
android:orientation="vertical">
<GridView
android:id="@+id/GridView1"
android:layout_width="match_parent"
android:layout_height="101dp"
android:numColumns="1"
android:padding="1dp" />
<GridView
android:id="@+id/GridView2"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:footerDividersEnabled="false"
android:numColumns="3"
android:padding="1dp" />
</LinearLayout>
</android.support.v4.widget.SwipeRefreshLayout>
如果你在第一个GridView(GridView1)中总是需要1列,我建议你改用RecyclerView。
希望它有所帮助!