gpt4 book ai didi

android - 为什么我的进度条没有垂直居中?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:31:11 25 4
gpt4 key购买 nike

我有以下布局...

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg_generic_portrait">
<ListView android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/issue_list_item_background_normal"
android:listSelector="@drawable/issue_background_selector"
android:divider="@drawable/separator"
>
</ListView>
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:id="@+id/preloader"
style="@android:style/Widget.ProgressBar.Large"/>

<TextView android:id="@android:id/empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#FF0000"/>
</LinearLayout>

它看起来像这样...http://i.stack.imgur.com/Ra5c6.png

我也想让预加载器垂直居中,怎么了?

最佳答案

不知何故 layout_gravity 不能正常工作。您需要做的是将 progress_bar 嵌套在 linear_layout 中并将该布局的重力设置为居中,如下所示:

<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center">
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/preloader"
style="@android:style/Widget.ProgressBar.Large"/>
</LinearLayout>

我不建议将重力设置到最顶层的线性布局,因为如果您更改列表或添加一些东西,可能会发生有趣的事情。

关于android - 为什么我的进度条没有垂直居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10919580/

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