1、再androidmanifest.xml 中设置activity属性
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"//去掉状态栏及标题栏
2、再code中设置:
在setContentView前面加入:requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉信息栏
另外再androidmanifest.xml文件中设置activity属性Theme.Dialog 等。
<style name="Theme.ActivityDialog" parent="android:style/Theme.Dialog">
<item name="android:windowBackground">@null</item>
</style>
android:theme="@style/Theme.ActivityDialog"