gpt4 book ai didi

java - 如何在xml中进行这样的布局?安卓

转载 作者:行者123 更新时间:2023-11-29 06:20:25 26 4
gpt4 key购买 nike

我想要一个和屏幕一样大的两行三列的布局

喜欢那张图片=> http://dl.dropbox.com/u/2024237/Bildschirmfoto-DroidDraw.png

颜色应该是按钮...

请帮忙....我想不通

最佳答案

使用 LinearLayouts 并在宽度和高度上将子级设置为 fill_parent 并为它们分配相同的 layout_weight 您将获得所需的效果:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<LinearLayout
android:orientation="horizontal"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:text="Button 1"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"></Button>
<Button
android:text="Button 2"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"></Button>
<Button
android:text="Button 3"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"></Button>
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:text="Button 4"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"></Button>
<Button
android:text="Button 5"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"></Button>
<Button
android:text="Button 6"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"></Button>
</LinearLayout>
</LinearLayout>

关于java - 如何在xml中进行这样的布局?安卓,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3326157/

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