gpt4 book ai didi

Android:如何在中心显示全屏进度条

转载 作者:太空宇宙 更新时间:2023-11-03 13:45:49 25 4
gpt4 key购买 nike

我正在尝试显示带有自定义主题的进度条。但它出现在左上角而不是中心。如果我不使用自定义主题,它将出现在中心而不是全屏,它在背景中显示 TextView 和其他元素,看起来很糟糕。以下是代码和截图

自定义主题:

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

<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true" />

</RelativeLayout>

在带有自定义主题的 Activity 初始化进度对话框中:

progressBar = new ProgressDialog(context, R.layout.layout_progress_dialog);
progressBar.setMessage("Please wait...");
progressBar.setCancelable(false);

enter image description here

当我单独看到进度条主题的预览时,它正确显示如下。但在 Activity 中它显示在错误的位置。

enter image description here

最佳答案

您在需要主题 ID 的构造函数中传递布局 ID。

progressBar = new ProgressDialog(context, R.layout.layout_progress_dialog);

构造函数是

public ProgressDialog(Context context, int theme) 

您应该在 style.xml 中定义您的自定义属性,并在此处传递该样式的 ID。

关于Android:如何在中心显示全屏进度条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42489729/

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