Skip to content

Commit

Permalink
Reordering views for consistency in transformer demo app
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 489216085
  • Loading branch information
tof-tof authored and microkatz committed Nov 21, 2022
1 parent 9345362 commit 51e4a07
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,10 @@ private void startTransformation() {
} catch (IOException e) {
throw new IllegalStateException(e);
}
informationTextView.setText(R.string.transformation_started);
progressViewGroup.setVisibility(View.VISIBLE);
inputCardView.setVisibility(View.GONE);
outputPlayerView.setVisibility(View.GONE);
informationTextView.setText(R.string.transformation_started);
progressViewGroup.setVisibility(View.VISIBLE);
Handler mainHandler = new Handler(getMainLooper());
ProgressHolder progressHolder = new ProgressHolder();
mainHandler.post(
Expand Down

0 comments on commit 51e4a07

Please sign in to comment.