3 回答
TA贡献1856条经验 获得超17个赞
我认为实现此类视图的最佳方法是使用带有 GridLayoutManager 的 recyclerView,但是如果您想在 xml 中处理它,您可以使用带权重的 LinearLayouts。例如,此代码将生成一个 2x2 网格
<LinearLayout android:orientation="vertical"
android:layout_height="30dp"
android:layout_width="match_parent">
<LinearLayout android:orientation="horizontal"
android:layout_height="match_parent"
android:layout_width="match_parent">
<LinearLayout
android:layout_weight="1"
android:layout_height="match_parent"
android:layout_width="0dp"/>
<LinearLayout
android:layout_weight="1"
android:layout_height="match_parent"
android:layout_width="0dp"/>
</LinearLayout>
<LinearLayout android:orientation="horizontal"
android:layout_height="30dp"
android:layout_width="match_parent">
<LinearLayout
android:layout_weight="1"
android:layout_height="match_parent"
android:layout_width="0dp"/>
<LinearLayout
android:layout_weight="1"
android:layout_height="match_parent"
android:layout_width="0dp"/>
</LinearLayout>
</LinearLayout>
添加回答
举报