Commit 2c4eb1cd by eguven Committed by Toni

Demo app change.

PiperOrigin-RevId: 250248268
parent 3afdd7ac
...@@ -151,7 +151,8 @@ public class PlayerActivity extends AppCompatActivity ...@@ -151,7 +151,8 @@ public class PlayerActivity extends AppCompatActivity
@Override @Override
public void onCreate(Bundle savedInstanceState) { public void onCreate(Bundle savedInstanceState) {
String sphericalStereoMode = getIntent().getStringExtra(SPHERICAL_STEREO_MODE_EXTRA); Intent intent = getIntent();
String sphericalStereoMode = intent.getStringExtra(SPHERICAL_STEREO_MODE_EXTRA);
if (sphericalStereoMode != null) { if (sphericalStereoMode != null) {
setTheme(R.style.PlayerTheme_Spherical); setTheme(R.style.PlayerTheme_Spherical);
} }
......
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