编程语言
首页 > 编程语言> > C#-Android ProgressBar消失

C#-Android ProgressBar消失

作者:互联网

我有一个不确定的android ProgressBar,所以它只是一个旋转的圆形动画.

它开始显示正常,但是在我将其父级(overlayLayout)的可见性设置为“走”或“不可见”,然后稍后将其设置回可见时,看不到进度条吗?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/overlayLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    android:gravity="center" >
    <TextView
        android:text=""
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:layout_width="match_parent"
        android:textAlignment="center"
        android:layout_margin="10dp"
        android:layout_height="wrap_content"
        android:id="@+id/overlayLabelText" />
  <ProgressBar
      android:id="@+id/overlayProgressBar"
      android:layout_below="@id/overlayLabelText"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:foregroundGravity="center"
      android:indeterminate="true" />
</RelativeLayout>

编辑:
我不确定是否包含该视图,但不确定进度条是否未呈现,或者不确定ProgressBar视图本身是否被完全排除,因为我无法访问UI视图层次结构.

到目前为止,我已经尝试过:

    ProgressBar.Enabled = true;
    ProgressBar.ForceLayout();
    ProgressBar.Invalidate();
    ProgressBar.SetProgress(0, true);
    ProgressBar.Visibility = ViewStates.Visible;

但是还没有突破.

编辑2:
谢谢大家到目前为止的帮助.我已经切换到以编程方式创建布局-这是我的完整代码:

overlay = new RelativeLayout(mainActivity)
{
    LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, ViewGroup.LayoutParams.MatchParent)
};
overlay.SetBackgroundColor(Color.WhiteSmoke);
overlay.SetGravity(GravityFlags.Center);
description = new TextView(mainActivity)
{
    LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, ViewGroup.LayoutParams.WrapContent),
    Gravity = GravityFlags.Center,
    TextSize = 18,
    Id = 1523112
};
description.Text = "Waiting for GPS";
description.SetBackgroundColor(Color.Aqua);
progressBar = new ProgressBar(mainActivity)
{
    Indeterminate = true,
};
RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.MatchParent, ViewGroup.LayoutParams.WrapContent);
lp.AddRule(LayoutRules.Below, description.Id);
progressBar.LayoutParameters = lp;
progressBar.SetBackgroundColor(Color.Red);

container.AddView(overlay);
overlay.AddView(description);
overlay.AddView(progressBar);

使用两种隐藏和显示方法:

private void OnGpsUpdate()
{
    overlay.Visibility = ViewStates.Gone;
}

private void NoGPS()
{
    description.Text = "Waiting for GPS";
    overlay.Visibility = ViewStates.Visible;
}

首次渲染布局时,在首次隐藏之前:
(我在不好的时候截图了,但是蓝色的绘图显示了圆圈在其加载动画周围移动的位置)
enter image description here

隐藏并再次显示后,进度条加载视图已存在,但不再有加载环:

enter image description here

我开始认为这可能是我的Android模拟器有问题吗?不,在我的实体电话上测试时,同样的问题.文本视图仍然显示正常,只是进度条不显示?


我没有完全理解它,因为除了progressBar之外,其他所有功能似乎都可以正常工作,但是一种解决方案来自将可见性调用包装在RunOnUIThread()调用中.

解决方法:

几点

根据问题的描述方式,您需要显示用于隐藏/显示overlayLayout的代码段

推荐建议

如果您只关心进度条在隐藏/显示方面的行为,则无需使用此代码段:

ProgressBar.Enabled = true;
ProgressBar.ForceLayout();
ProgressBar.Invalidate();
ProgressBar.SetProgress(0, true);
ProgressBar.Visibility = ViewStates.Visible;

您只需要控制ID为overlayLayout的根布局即可

private RelativeLayout overlayLayout;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_example);

    // Instantiate the layout
    overlayLayout = findViewById(R.id.overlayLayout);

    // Do the logic how you inflate/show the layout
    ... 

    // Hide the overlay layout
    overlayLayout.setVisibility(View.GONE);

    // Show the overlay layout
    overlayLayout.setVisibility(View.VISIBLE);
}

确定可见性值,对于这种情况,我建议使用View.GONE而不是View.INVISIBLE

阅读更多内容:

> https://developer.android.com/reference/android/view/View.html#GONE
> https://developer.android.com/reference/android/view/View.html#INVISIBLE
> http://tips.androidgig.com/invisible-vs-gone-view-in-android/

标签:xamarin,android-progressbar,c,android
来源: https://codeday.me/bug/20191024/1923505.html