gpt4 book ai didi

android - 如何在 ListView 中放置 ProgressBar?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:47:49 24 4
gpt4 key购买 nike

我有一个在 AsyncTask 中填充的 ListView。运行时ListView不可见,ProgressBar显示在水平居中,AsyncTask完成后消失,ListView再次显示。现在看起来像这样:

enter image description here

但我需要在 ListView 内部显示 ProgressBar,并且水平和垂直居中:

enter image description here

这是我的布局标记:

<?xml version="1.0" encoding="utf-8"?>

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

<LinearLayout
android:id="@+id/LinearHeaderProgress"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:orientation="vertical"
android:visibility="gone">

<ProgressBar
android:id="@+id/HeaderProgress"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</ProgressBar>
</LinearLayout>

<ListView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:id="@+id/listView"/>
</LinearLayout>

我怎样才能做到这一点?

谢谢。

最佳答案

尝试像这样使用 RelativeLayout,

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

<ProgressBar
android:id="@+id/HeaderProgress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true" >
</ProgressBar>

<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</RelativeLayout>

关于android - 如何在 ListView 中放置 ProgressBar?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26203440/

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