gpt4 book ai didi

Android:如何创建具有填充整个屏幕的特定列和行的网格布局

转载 作者:行者123 更新时间:2023-11-29 01:38:11 34 4
gpt4 key购买 nike

我一直在尝试创建具有特定列数和行数的网格布局,但我还没有找到解决方案。网格有 2 列和 4 行,这个网格需要填满整个屏幕。此外,每个内框都有文本和图像。它应该是这样的:

image

最佳答案

我终于找到了解决方案。我不得不使用嵌套的线性和相对布局。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="1"
android:orientation="vertical"
android:id="@+id/categorias_table">

<!--ROW-->
<LinearLayout
android:layout_height="0dp"
android:layout_width="fill_parent"
android:layout_weight="1"
android:orientation="horizontal">

<RelativeLayout
android:background="@drawable/categoria1_box"
android:layout_height="fill_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:gravity="center">

<ImageView
android:id="@+id/categoria_image_1"
android:src="@drawable/ic_alerts"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"/>

<TextView
android:text="@string/categoria1"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:gravity="center"
android:layout_below="@+id/categoria_image_1"
android:textAllCaps="true"
android:textStyle="bold"
android:textColor="@color/white"/>

</RelativeLayout>


<RelativeLayout
android:background="@drawable/categoria2_box"
android:layout_height="fill_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:gravity="center">

<ImageView
android:id="@+id/categoria_image_2"
android:src="@drawable/ic_alerts"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"/>

<TextView
android:text="@string/categoria2"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:gravity="center"
android:layout_below="@+id/categoria_image_2"
android:textAllCaps="true"
android:textStyle="bold"
android:textColor="@color/white"/>

</RelativeLayout>

</LinearLayout>
<!--END ROW-->

关于Android:如何创建具有填充整个屏幕的特定列和行的网格布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26538779/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com