Merge pull request #5511 from ByteHamster/refresh-item-state

Refresh item state on start
This commit is contained in:
ByteHamster 2021-10-30 23:02:04 +02:00 committed by GitHub
commit 15e73e26cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 7 deletions

View File

@ -14,7 +14,6 @@ import android.widget.Button;
import android.widget.ImageView;
import android.widget.ProgressBar;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.text.TextUtilsCompat;
import androidx.core.util.ObjectsCompat;
@ -223,12 +222,6 @@ public class ItemFragment extends Fragment {
balloon.showAlignBottom(butAction1, 0, (int) (-12 * getResources().getDisplayMetrics().density));
}
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
load();
}
@Override
public void onStart() {
super.onStart();
@ -240,6 +233,7 @@ public class ItemFragment extends Fragment {
}
};
controller.init();
load();
}
@Override