gpt4 book ai didi

android - NestedScrollView 下面的 TextView,高度 wrap_content 不可见

转载 作者:搜寻专家 更新时间:2023-11-01 08:32:30 24 4
gpt4 key购买 nike

下面是底页的布局文件。我在嵌套 ScrollView 下方有一个 TextView。当内容很大时,NestedScrollView下面的TextView是不可见的。如果 NestedScrollView 的内容很小,它是可见的。我不明白是什么原因造成的。

这是我的布局文件:

    <LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical">

<android.support.v7.widget.Toolbar
android:id="@+id/bottom_sheet_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:title="My Title">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:background="?attr/selectableItemBackgroundBorderless"
android:onClick="@{() -> handler.hideBottomSheet()}"
android:src="@drawable/ic_keyboard_arrow_down_black_24dp" />

</android.support.v7.widget.Toolbar>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin">

<RadioGroup
android:id="@+id/selection_mode"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:checkedButton="@+id/mode_1"
android:gravity="center"
android:orientation="horizontal">

<RadioButton
android:id="@+id/mode_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/mode_1" />

<RadioButton
android:id="@+id/mode_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/mode_2" />

</RadioGroup>

<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">

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

</android.support.v4.widget.NestedScrollView>

<TextView
android:id="@+id/list_description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_marginTop="10dp"
android:gravity="center"
android:text="This text is not visible. I dunno why! :/" />

</LinearLayout>

</LinearLayout>
</FrameLayout>

list_container LinerLayout 在运行时膨胀。我没有使用 RecyclerViewListView 有一些原因。这相当小,有时只需稍微滚动一下。

但是当 list_container 很大(需要滚动)时,TextView list_description 不会显示。

我不明白哪里出了问题。

最佳答案

尝试在 NestedScrollView 上使用 android:layout_weight

在您的情况下,将 NestedScrollView 的 header 替换为:

<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"

希望对您有所帮助 =]

关于android - NestedScrollView 下面的 TextView,高度 wrap_content 不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39515256/

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