gpt4 book ai didi

android - 进度条设置可见不起作用

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

我有这样的布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:background="@drawable/menu_background"
>

<ProgressBar
android:id="@+id/aPBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
style="@android:style/Widget.ProgressBar.Inverse"/>

...

</RelativeLayout>

在我的 onCreate 方法中,我这样做是为了首先隐藏 ProgressBar:

LayoutInflater inflater = getLayoutInflater();
RelativeLayout layout = (RelativeLayout)inflater.inflate(R.layout.achievements_screen, null);

progressBar=(ProgressBar)layout.findViewById(R.id.aPBar);
progressBar.setVisibility(View.INVISIBLE);

但是 ProgressBar 仍然始终可见...我也尝试了 View.GONE

当我设置

android:visible="gone"

在 XML 文件中,ProgressBar 没有显示,但我不能用

让它显示
 progressBar.setVisibility(View.Visible);

最佳答案

您正在使用 Layout Inflater 为新 View 充气。这不是屏幕上当前的 View 。

因此更改它的可见性不会影响屏幕 UI。

在您的 Activity 中,您必须调用 setContentView 并且这是在您的 UI 上可见的布局。

因此调用:

findViewById 将返回屏幕上的进度条,但调用 layout.findViewById 将返回布局进度条(正确),但这不是您可以看到的进度条在你的屏幕上。

关于android - 进度条设置可见不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11180467/

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