Fix SecondaryLauncher crash when started.

SecondaryLauncher crash after change material source.
From the error log the style of this component should be
Theme.MaterialComponents or as descendant.
Change theme parent to fix it.

Bug: 130151609
Bug: 130182878
Test: atest MultiDisplaySystemDecorationTests
Change-Id: Iad2817864326b04fac00bfc57b8ab6eaf2bd9c13
This commit is contained in:
wilsonshih
2019-04-09 11:07:28 +08:00
parent 01aea983ef
commit d716934266
@@ -18,7 +18,7 @@
-->
<resources>
<style name="SecondaryLauncherTheme" parent="Theme.AppCompat.Light.NoActionBar" >
<style name="SecondaryLauncherTheme" parent="Theme.MaterialComponents.NoActionBar" >
<item name="android:windowShowWallpaper">true</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsTranslucent">true</item>