去掉actionbar上面的阴影

来源:互联网 发布:万网域名备案 编辑:程序博客网 时间:2024/04/29 02:52

In order to remove the shadow add this to your app theme:

<style name="MyAppTheme" parent="android:Theme.Holo.Light">    <item name="android:windowContentOverlay">@null</item></style>
0 0