gpt4 book ai didi

带有 ScrollView 的android自定义对话框将按钮推离屏幕

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:07:05 26 4
gpt4 key购买 nike

我有一个布局如下的自定义对话框:

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/mylayout">
<LinearLayout
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView ... />
<TextView .../>
</LinearLayout>
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/title">
<LinearLayout ...>
<TextView ...
android:text="lots of text........" />
<TextView .../>
</LinearLayout>
</ScrollView
<RelativeLayout ...
android:layout_below="@+id/scrollView">
<Button ...>
<Button ...>
</RelativeLayout>
</RelativeLayout>

我的问题是 ScrollView 是当 ScrollView 中的文本太多时,下面的按钮被压出对话框。我已经能够通过使用 android:layout_alignParentBottom="true"将包含按钮的 RelativeLayout 锚定到底部来防止它,但是当 ScrollView 中的文本较少时,我将整个对话框拉伸(stretch)到屏幕底部并且我不想要那个。

如何获得这样的布局:

[SOME TEXT]
[Scrollable region]
[Buttons]

最佳答案

尝试使用 LinearLayout 而不是 RelativeLayout 将按钮放在单独的布局中,并在按钮布局上放置权重。

LinearLayout - top level start, android:layout_weight="0"
LinearLayout with TextViews embeded, android:layout_weight="1"
LinearLayout with ScrollView embeded, android:layout_weight="1"
LinearLayout with Buttons embeded, android:layout_weight="1"
LinearLayout - top level finish, android:layout_weight="0"

关于带有 ScrollView 的android自定义对话框将按钮推离屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13710947/

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