gpt4 book ai didi

ProgressDialog 显示在屏幕上时的 Android 多任务处理

转载 作者:行者123 更新时间:2023-11-30 00:31:08 26 4
gpt4 key购买 nike

在 Android 中,我有一个带有设置菜单的屏幕,当加载屏幕时,我使用 ProgressDialog 显示消息“请等待。屏幕加载时”,直到搜索完成。

我想在搜索当前打开并且 ProgressDialog 仍在屏幕上显示时访问屏幕中的设置菜单。

我尝试了 progressDialog.cancel(),但这隐藏了进度对话框消息,然后允许我进入菜单。但我想在访问菜单时显示对话框消息。是否可以在用户访问设置菜单时显示进度对话框消息。

最佳答案

根据您的要求,您可能不应该使用 ProgressDialog,因为它会“锁定”用户操作,直到您取消它(或者用户通过按后退按钮将其关闭)。

另一种解决方案是创建一个具有居中的 ProgressBar 和一个 TextView 的 View ,并将其初始可见性设置为 GONE,然后一次当您开始加载搜索时,您可以将此 View 可见性更改为 VISIBLE 并将其他所有内容更改为 GONE(除了您希望显示的内容,例如菜单)。

话虽如此,您会得到类似于下面的屏幕截图的内容:

Sample loading screen

这样,用户将能够与屏幕上的其他组件进行交互,例如访问设置菜单。

XML代码如下:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone">

<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="LOADING..."
app:layout_constraintTop_toBottomOf="@+id/progressBar"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>

</android.support.constraint.ConstraintLayout>

关于ProgressDialog 显示在屏幕上时的 Android 多任务处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44318324/

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