android默认的activity中是有顶部栏的
在安卓的style.xml文件中添加这个自定义样式
<style name="MyFull" parent="AppTheme">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="android:windowFullscreen">true</item>
<item name="android:windowContentOverlay">@null</item>
</style>
在manifest.xml文件中修改当前app的默认主题