解决办法:
1.找到res/values/styles.xml文件,在其中添加自定义主题,添加如下:
<style name="myTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item></style> 2.修改src\main\AndroidManifest.xml中主题引用
android:theme="@style/myTheme" 3.rubuild项目查看相应的效果。
时间: 2024-10-18 00:17:38