gridlayout

<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:columnCount="3"

    >


    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="第一个"
        />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="第二个"
        android:layout_row="1"
        android:layout_column="1"
        />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_row="0"

        android:text="第三个"
        />

    <Button

        android:layout_width="wrap_content"
        android:layout_height="66dp"
        android:text="第四个" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:text="第五个" />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:text="第六个" />



</GridLayout>
posted @ 2023-03-29 11:27  会秃头的小白  阅读(20)  评论(0)    收藏  举报