gpt4 book ai didi

android - 如何一直显示在底部?

转载 作者:行者123 更新时间:2023-11-29 16:41:57 25 4
gpt4 key购买 nike

目前,我正在显示 ListView 项目。现在我需要始终在底部显示一些 TextView。最后,我的看法应该是这样的。

enter image description here

最佳答案

你可以使用RelativeLayout

比使用 android:layout_alignParentBottom="true" 将 View 附加到屏幕底部

示例代码

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">


<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@id/bottomLinearLayout"
android:layout_alignParentTop="true"/>

<LinearLayout
android:id="@+id/bottomLinearLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@color/colorAccent"
android:orientation="vertical">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nilesh" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nilesh" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nilesh" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nilesh" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nilesh" />

</LinearLayout>

</RelativeLayout>

EDIT You can also achieve this using LinearLayout

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1" />

<LinearLayout
android:id="@+id/bottomLinearLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorAccent"
android:orientation="vertical">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nilesh" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nilesh" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nilesh" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nilesh" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nilesh" />

</LinearLayout>

</LinearLayout>

结果

enter image description here

关于android - 如何一直显示在底部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50271247/

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