Refresh item state on start

Otherwise, pressing the download button, pausing and coming back
shows the wrong action buttons.
This commit is contained in:
ByteHamster 2021-10-30 22:19:12 +02:00
parent 345aad4148
commit ac41f5c319

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