gpt4 book ai didi

android - 在 ScrollView 中将 View 添加到布局底部

转载 作者:行者123 更新时间:2023-11-30 00:51:26 24 4
gpt4 key购买 nike

所以,我有一个线性布局和一个 TextView (都包含在 ScrollView 中)。我想最初将 textview 放在屏幕底部(我不希望它固定在底部)。我关注了这个问题 Adding view to bottom of layout inside a scrollview但它没有帮助。这是我的布局。 (所有layout_width属性都是match_parent)

<ScrollView
android:layout_height="match_parent"
android:fillViewport="true">
<LinearLayout
android:orientation="vertical"
android:layout_height="wrap_content">
<LinearLayout
android:layout_height="0dp"
android:layout_weight="1">
<!-- this expands to fill the empty space if needed -->
</LinearLayout>

<!-- this sits at the bottom of the ScrollView,
getting pushed out of view if the ScrollView's
content is tall enough -->
<TextView
android:layout_height="wrap_content"
android:text="something">
</TextView>
</LinearLayout>
</ScrollView>

问题是 TextView 永远不可见。你能告诉我能做些什么来解决它吗? (最初有足够的空间用于线性布局和 TextView 以适应屏幕)PS:请不要标记为重复,因为所有其他相关问题都希望将 TextView 固定在底部。

最佳答案

试试这个

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="10"
android:fillViewport="true">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="something">
</TextView>
</LinearLayout>

</ScrollView>

<include
layout="@layout/your_edit_text_layout_here"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="bottom" />
</LinearLayout>

关于android - 在 ScrollView 中将 View 添加到布局底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40961897/

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