gpt4 book ai didi

android - 为什么 marginBottom 不起作用?

转载 作者:IT王子 更新时间:2023-10-28 23:57:46 28 4
gpt4 key购买 nike

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/messageLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<ImageView
android:id="@+id/messageSender"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"/>

<TextView
android:id="@+id/messageSenderName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/messageSender"
android:ellipsize="end"
android:maxLines="1"
android:singleLine="false"
android:textColor="@color/list_text_color"
android:textSize="16dp"
android:layout_marginTop="5dp" />

<TextView
android:id="@+id/messageContent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/messageSender"
android:layout_below="@id/messageSenderName"
android:ellipsize="end"
android:maxLines="1"
android:singleLine="false"
android:textColor="@color/codeFont"
android:textSize="13dp"/>
</RelativeLayout>

在我的布局中我有问题。当我设置 marginTop="5dp" 很好,但是当我使用 marginBottom 时,我的布局没有任何反应。此外,当我在 RelativeLayout 中设置填充时,它也不起作用。这里有什么问题?能给我解决办法吗?

最佳答案

marginBottom如果设置 android:layout_height="wrap_content" 则无效对于 <RelativeLayout> ,而是将其设置为 ma​​tch_parent 并检查。

关于android - 为什么 marginBottom 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8642071/

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