项目名称=“android:windowContentOverlay”>@null项目> ...
在您的应用程序或 AndroidManifest.xml 中的 Activity 上应用主题:
Its Work for Me Very Nicely:
Apply a custom theme to your activity, and null out the android:windowContentOverlay attribute.
Define a theme in themes.xml:
<style name="YourTheme" parent="if you want">...<item name="android:windowContentOverlay">@null</item>...</style>
Apply the theme on your application or the activity in AndroidManifest.xml:
<application android:theme="@style/YourTheme"... >
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
Its Work for Me Very Nicely:
Apply a custom theme to your activity, and null out the android:windowContentOverlay attribute.
Define a theme in themes.xml:
<style name="YourTheme" parent="if you want">
...
<item name="android:windowContentOverlay">@null</item>
...
</style>
Apply the theme on your application or the activity in AndroidManifest.xml:
<application android:theme="@style/YourTheme"
... >