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

View File

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