您需要使用theme.appcompat

时间:2019-03-27 16:17:55

标签: android

我不是开发人员。我在编辑Google搜索窗口小部件时遇到问题。 Google应用程序崩溃,显示以下日志:https://del.dog/bihagetole 我该怎么做才能解决此问题?

1 个答案:

答案 0 :(得分:0)

您必须在styles.xml文件中定义主题父级

  <!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. This one does not have a action bar for example -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>