创建一个android项目,我想用到ActionBar,又想去掉主题那一层灰色,求解决思路!
menifest里修改application的theme值为继承NoActionBar
style文件里改成这样也可以
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <item name="android:windowNoTitle">true</item> </style>