线性布局或滚动视图被推离屏幕

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了线性布局或滚动视图被推离屏幕相关的知识,希望对你有一定的参考价值。

由于某种原因,滚动视图被推离屏幕

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_new_male_female_sf"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false"
android:orientation="horizontal" >

<RelativeLayout
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_weight="2" >

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

     //DYNAMICALLY PUTTING IMAGEVIEW HERE   

    </RelativeLayout>

    <Button
        android:id="@+id/next_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true" />

</RelativeLayout>

<ScrollView
    android:id="@+id/scrollview"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_weight="3" >

    <LinearLayout
        android:id="@+id/selection_bar"
        android:orientation="vertical"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

    </LinearLayout>

</ScrollView>

</LinearLayout>

我已经尝试使最外面的布局成为相对布局,但滚动视图与嵌套的相对布局重叠。任何人都可以提出建议吗?

答案

它不起作用,因为你使用match_parent作为高度,所以RelativeLayout占用了所有的空间。当总和大于LinearLayout时,权重用于分配剩余的空白空间或占用空间。

将宽度设置为0dp,它将起作用。 :)

以上是关于线性布局或滚动视图被推离屏幕的主要内容,如果未能解决你的问题,请参考以下文章

如何在列表视图下方放置固定按钮?

使用 LinearLayout 向 ListView 添加标题,Listview 被推离屏幕(Xamarin Android)

列表视图滚动时在屏幕底部隐藏线性布局

不遵守自动布局底部间距约束

拆分滚动视图使其伸展一半的屏幕,但它忽略了布局重量

Android滚动问题