在片段中,当图像被设置为ScrollView中RelativeLayout的背景时,RelativeLayout行为不正常

时间:2017-08-18 14:52:37

标签: android android-fragments android-scrollview android-relativelayout

我有这种布局的活动:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/fragment_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".activities.MainActivity" />

然后我有这个片段布局,我在活动的fragment_container中进行交易:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/scroll_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true">

    <RelativeLayout
        android:id="@+id/relative_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/bg_login">


    </RelativeLayout>

</ScrollView>

drawable bg_login是:bg_login 但奇怪的是,背景图像(bg_login)隐藏了RelativeLayout中的所有内容,在预览窗格中以及运行应用程序时。我不明白为什么会这样!请帮忙。

1 个答案:

答案 0 :(得分:0)

我不知道你想做什么,你想在滚动或不滚动时在相对布局中有多个背景。 但我假设你,滚动视图时有一个带背景的子元素不是最好的做法。 所以scoll视图必须设置为来自父母的孩子有良好练习的背景。 这可能对您有所帮助:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
android:background="@drawable/bg_login">
<ScrollView
    android:id="@+id/scroll_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true">

    <RelativeLayout
        android:id="@+id/relative_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">


    </RelativeLayout>

</ScrollView>
</RelativeLayout>