标签:
解决办法:
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项目查看相应的效果。
Android Studio empty activity取消默认title的办法
标签:
原文地址:http://www.cnblogs.com/qiaoy/p/5156256.html