android:layout_alignParentBottom =“true”无法按预期运行。

时间:2013-10-11 18:38:24

标签: java android android-layout android-linearlayout

我正试图将ass_update_btn与屏幕底部相邻,但似乎没有这样做。出于某种原因,它位于TextView下方,并且由于某种原因未与屏幕底部对齐。

非常感谢任何输入。

<?xml version="1.0" encoding="utf-8"?>
<!-- LinearLayout allows border to expand to entire screen -->
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:orientation="vertical" >
>

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent" >

            <TextView
                android:id="@+id/apn_app_text_cta2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textSize="18sp"
                android:layout_marginTop="30sp"
                android:layout_marginLeft="30sp"
                android:layout_marginRight="30sp"
                android:textColor="#000000"
                android:text="@string/apn_app_text_cta2"/>


            <ImageView
                android:id="@+id/assist_update_btn"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/apn_app_text_cta2"
                android:layout_alignParentBottom="true"
                android:layout_centerHorizontal="true"
                android:src="@drawable/btn_next_inactivei" />

        </RelativeLayout>

</ScrollView>

3 个答案:

答案 0 :(得分:1)

android:fillViewport="true"ScrollView中的layout.Added android:layout_below="@+id/apn_app_text_cta2"中尝试以下代码 已从ImageView

中删除<!-- LinearLayout allows border to expand to entire screen --> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:fillViewport="true" > <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" > <TextView android:id="@+id/apn_app_text_cta2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="18sp" android:layout_marginTop="30sp" android:layout_marginLeft="30sp" android:layout_marginRight="30sp" android:textColor="#000000" android:text="@string/apn_app_text_cta2"/> <ImageView android:id="@+id/assist_update_btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" android:src="@drawable/btn_next_inactivei"/> </RelativeLayout> </ScrollView>
{{1}}

这应该有效

答案 1 :(得分:0)

这是因为这一行

android:layout_below="@+id/apn_app_text_cta2"

删除它,你应该得到预期的结果。该行与将其与父母的底部对齐相矛盾。

答案 2 :(得分:0)

这是因为ScrollView不会将整个屏幕集android:fillViewport="true"包装到scrollview,也会从android:layout_below="@+id/apn_app_text_cta2"中删除ImageView来实现此目的。