在运行时在DialogFragment中设置可见性视图

时间:2018-01-23 17:58:10

标签: android android-dialogfragment

我尝试在运行时更新DialogFragment显示,根据某些条件将视图的可见性设置为VISIBLE或GONE。

基本上,我在DialogFragment中扩充我的布局,在我做一些后台请求时显示进度条,并根据我的请求结果更新DialogFragment布局。

有时它可以工作,有时它不会相应地更新我的UI,即使日志显示调用该方法并且线程是主线程。 知道为什么吗?

在DialogFragment中

@Override
public void showData(List<MyDataViewModel> data) {
    Timber.d("Fragment Show data " + (Looper.myLooper() == Looper.getMainLooper()));
    Timber.d("Fragment Show data " + this);
    Timber.d("Fragment Show data " + data.size());

    if (mConnectedContainer.getVisibility() != View.VISIBLE) {
        mConnectedContainer.setVisibility(View.VISIBLE);
    }
}

在活动中

@Override
public void showDialog() {
    // DialogFragment.show() will take care of adding the fragment
    // in a transaction.  We also want to remove any currently showing
    // dialog, so make our own transaction and take care of that here.
    FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
    Fragment prev = getSupportFragmentManager().findFragmentByTag("dialog");
    if (prev != null) {
        ft.remove(prev);
    }
    ft.addToBackStack(null);

    // Create and show the dialog.
    DialogFragment newFragment = MyDialogFragment.newInstance();
    newFragment.show(ft, "dialog");
}

也试过这种方式

@Override
public void showDialog() {
    // Create and show the dialog.
    DialogFragment newFragment = MyDialogFragment.newInstance();
    newFragment.show(getSupportFragmentManager(), "dialog");
}

1 个答案:

答案 0 :(得分:0)

经过一番调查后,问题与我使用RxJava有关。 我正在执行第一个UseCase,并在onNext中执行另一个。

我将代码分成两个不同的对话框以使其更简单,并且只有一个用例更新UI,而且没有更多问题。