gpt4 book ai didi

android - 为什么 RelativeView 不到底?

转载 作者:行者123 更新时间:2023-11-29 22:23:07 25 4
gpt4 key购买 nike

具体来说,我试图让 ID 为 bottomStuff 的 RelativeLayout 向下 float 到底部。我尝试将重力设置设置为底部,这是其他 SO 帖子建议的,但它仍然一直停留在顶部,这是为什么?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/relativeLayout1" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:gravity="center">

<TextView android:id="@+id/textView1" android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_alignParentRight="true" android:layout_weight="1"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:text="@string/currentAlarms" android:gravity="center"
android:layout_alignParentTop="true">
</TextView>

<ScrollView android:id="@+id/scroll" android:layout_width="fill_parent"
android:layout_below="@+id/textView1" android:layout_centerVertical="true"
android:gravity="center" android:layout_height="wrap_content"
android:layout_marginBottom="150px">

<LinearLayout android:layout_width="wrap_content"
android:id="@+id/alarms" android:orientation="vertical"
android:gravity="center" android:layout_centerVertical="true"
android:layout_height="wrap_content">
</LinearLayout>
</ScrollView>

<RelativeLayout android:id="@+id/bottomStuff"
android:layout_height="wrap_content" android:layout_width="fill_parent"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" android:layout_marginBottom="12dp"
android:gravity="bottom">

<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="a14e1a859cbb3fb"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"/>

<LinearLayout android:id="@+id/BLinearLayout"
android:layout_height="wrap_content" android:layout_width="fill_parent"
android:layout_below="@+id/adView"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:gravity="bottom">

<Button android:layout_height="wrap_content" android:text="@string/addAlarm"
android:id="@+id/button1" android:layout_width="0px"
android:layout_weight="1" android:drawableTop="@drawable/plus"
android:onClick="addAlarm">
</Button>
<Button android:layout_width="0px" android:layout_height="wrap_content"
android:id="@+id/button2" android:layout_centerVertical="true"
android:layout_alignParentRight="true" android:layout_weight="1"
android:text="@string/settings" android:drawableTop="@drawable/preferences">
</Button>

</LinearLayout>
</RelativeLayout>

</RelativeLayout>

谢谢!

最佳答案

在带有按钮的 LinearLayout 中,移除 layout_alignParentBottom:

<LinearLayout android:id="@+id/BLinearLayout"
android:layout_height="wrap_content" android:layout_width="fill_parent"
android:layout_below="@+id/adView"
android:layout_centerHorizontal="true"
android:layout_gravity="bottom">

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

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