gpt4 book ai didi

android - 如何获取android :layout_gravity ="bottom" to work in LinearLayout

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

我试图在 LinearLayout 的顶部放置 1 个图像,在 LinearLayout 的底部放置 1 个图像。

但在我尝试了所有方法之后,我只能在另一个图像布局下方获得一个图像布局。我想要 1 个对齐到顶部,1 个对齐到底部。

<LinearLayout 
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:background="@drawable/bg1"
android:layout_gravity="top" />
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:background="@drawable/bg2"
android:layout_gravity="bottom" />
</LinearLayout>

我尝试将 RelativeLayout(在主容器中)与 layout_alignParentBottom(在我的第二张图片中)一起使用,但这也没有解决我的问题。

谢谢你的任何想法。

最佳答案

以下 RelativeLayout 工作正常(已测试):

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="wrap_content"
android:layout_height="match_parent" >

<ImageView
android:id="@+id/ImageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:background="@drawable/bg1" />

<ImageView
android:id="@+id/ImageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_toRightOf="@+id/ImageView1"
android:background="@drawable/bg2" />

如果仍有问题,请检查此 RelativeLayout 上方的容器。如果它是根,一切看起来都很好。

关于android - 如何获取android :layout_gravity ="bottom" to work in LinearLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10018713/

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