gpt4 book ai didi

android - 这个布局怎么做? (图片链接)

转载 作者:搜寻专家 更新时间:2023-11-01 08:17:20 26 4
gpt4 key购买 nike

我想知道如何获得这个结果:

http://img718.imageshack.us/img718/6173/screenshot20100411at126.png

这是我试过的:

<RelativeLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#CCCCCC"
android:orientation="horizontal"
android:layout_weight="0">

<Button android:id="@+id/btn_cancel"
android:text="@string/cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5px"
android:gravity="left"
/>

<Button android:id="@+id/btn_save"
android:text="@string/save"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5px"
android:layout_toRightOf="@id/btn_cancel"
android:gravity="right"/>
</RelativeLayout>

我尝试使用 layout_width 属性并将它们设置为填充父级,但没有成功,如果有人有想法的话......谢谢!

最佳答案

<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dip"
android:background="#CCCCCC"
android:orientation="horizontal">

<Button android:id="@+id/btn_cancel"
android:text="@string/cancel"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginRight="5dip"
android:layout_weight="1"/>

<Button android:id="@+id/btn_save"
android:text="@string/save"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
</LinearLayout>

在 LinearLayout 中让两个小部件占用相同空间量的技巧是在它们上设置 layout_width="fill_parent",然后设置 layout_weight="1 " 对它们也是如此。设置 fill_parent 和相同的 layout_weight 将告诉 LinearLayout 在两者之间拆分所有可用空间。

另外,使用dip,而不是pxdip 与屏幕尺寸无关,在不同尺寸的屏幕上看起来会更好。

关于android - 这个布局怎么做? (图片链接),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2620246/

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