gpt4 book ai didi

android - 如何将按钮放置在android中略高于底部的位置

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

我需要在屏幕底部放置一个按钮,并在其下方留出一些空间。换句话说,我将这两个属性用于我的按钮 -

android:layout_alignParentBottom="true" 
android:layout_marginBottom="20dp"

但是当我使用 alignParentBottom 并且按钮仅停留在底部时,margin 属性将不起作用。请告诉我如何将它放在底部上方一点。

这是xml

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:background="@drawable/board"
android:layout_marginLeft="10dp"
android:layout_marginRight="60dp"
android:layout_marginTop="15dp"
android:layout_marginBottom="10dp">


<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="Type of Lesion"
android:textColor="#8B0A50"
android:layout_marginTop="40dp"
android:id="@+id/disease_listheader_textview"
android:drawableBottom="@drawable/underline"/>

<ListView
android:id="@+id/disease_listview"
android:layout_below="@id/disease_listheader_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:divider="@drawable/divider"
android:layout_marginLeft="40dp"
android:layout_marginBottom="50dp"
android:cacheColorHint="#00000000"/>

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/disease_search_button"
android:layout_centerHorizontal="true"
android:background="@drawable/disease_search_btn"
android:layout_alignParentBottom="true"
android:layout_marginBottom="20dp"/>

</RelativeLayout>

最佳答案

只需将相对布局高度属性值更改为 fillparent,如




     android:layout_width="fill_parent"
android:layout_height="fill_parent"
.................../>


希望对你有帮助

关于android - 如何将按钮放置在android中略高于底部的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7551229/

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