Commit 93453621 by tofunmi Committed by microkatz

Fix video disappearing when the app is brought out of the background

PiperOrigin-RevId: 489212224
parent c1fd03df
...@@ -190,6 +190,7 @@ public final class TransformerActivity extends AppCompatActivity { ...@@ -190,6 +190,7 @@ public final class TransformerActivity extends AppCompatActivity {
throw new IllegalStateException(e); throw new IllegalStateException(e);
} }
informationTextView.setText(R.string.transformation_started); informationTextView.setText(R.string.transformation_started);
progressViewGroup.setVisibility(View.VISIBLE);
inputCardView.setVisibility(View.GONE); inputCardView.setVisibility(View.GONE);
outputPlayerView.setVisibility(View.GONE); outputPlayerView.setVisibility(View.GONE);
Handler mainHandler = new Handler(getMainLooper()); Handler mainHandler = new Handler(getMainLooper());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment