Android studio隱藏標題欄

weixin_34185364發表於2016-12-26

一.在AndroidMainFest.xml中修改

將當中的android:theme="@style/AppTheme"

修改為android:theme="@style/Theme.AppCompat.NoActionBar"

二.在MainActivity.class中修改

在MainActivity中的OnCreate()方法中新增getSupportActionBar().hide();

相關文章