横向模式下TextView和Button重叠

时间:2016-10-05 21:23:52

标签: android android-relativelayout landscape-portrait

我通过xml创建了视图,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="10dip"
    android:paddingRight="10dip"
    android:scrollbarStyle="outsideOverlay"
    android:fillViewport="true"
    android:background="@drawable/background_repeat">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="10dip"
        android:orientation="vertical"
        android:scrollbars="vertical">
        <ImageView
            android:id="@+id/imgSelfie"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:scaleType="fitCenter"
            android:adjustViewBounds="true"
            android:src="@drawable/help2"
            android:layout_margin="10dip"/>
        <TextView
            android:id="@+id/tvGidWelcomeScreenTitle"
            style="@style/LargeSize"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="@string/GidSelfieScreenMessage1"
            android:layout_margin="10dp"
            android:layout_below="@id/imgSelfie"/>
        <TextView
            android:id="@+id/tvGidWelcomeScreenMessage"
            style="@style/NormalSize"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="@string/GidSelfieScreenMessage2"
            android:layout_below="@id/tvGidWelcomeScreenTitle"/>

        <Button
            android:id="@+id/btnGidWelcomeNext"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textColor="@color/black"
            android:text="@string/GidSelfieScreenNextButton"
            android:layout_alignParentBottom="true"
            android:layout_marginBottom="15dp"/>
    </RelativeLayout>
</ScrollView>

在纵向模式下工作正常。但是,当我更改为横向时,设置为parentBottom的按钮将与文本重叠。我尝试了一些东西,但似乎它不起作用。

当我将其更改为横向时,任何人都知道如何将相同的视图归档为肖像?

提前致谢。

0 个答案:

没有答案