gpt4 book ai didi

android - 在 Activity 中添加两个 fragment ,一个包含可滚动 ListView ,另一个包含静态内容

转载 作者:行者123 更新时间:2023-11-29 01:27:59 24 4
gpt4 key购买 nike

我想在 Activity 中添加两个 fragment ,一个包含可滚动的 ListView ,另一个包含静态内容。我想实现类似的 View :

enter image description here

最佳答案

选项 #1:线性布局

(部分布局代码如下)

<LinearLayout>
<fragment android:layout_height="0dp" android:layout_weight="1" />
<fragment android:layout_height="wrap_content" />
</LinearLayout>

选项 #2:RelativeLayout

(部分布局代码如下)

<RelativeLayout>
<fragment
android:layout_alignParentTop="true"
android:layout_above="@+id/bottom" />
<fragment
android:id="@id/bottom"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
</RelativeLayout>

我确信还有其他选择,但这是两个经典的解决方案。

关于android - 在 Activity 中添加两个 fragment ,一个包含可滚动 ListView ,另一个包含静态内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32809474/

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