方法一 AndroidManifest.xml
android:theme="@style/AppTheme"
语句
将其修改为 android:theme="@style/Theme.xxx"
在 styles.xml
中定义 Theme.xxx
:
1 | <style name="Theme.NoTitle_FullScreen" parent="Theme.AppCompat.Light.NoActionBar"> |
方法二 MainActivity
1 | //去除默认标题栏 |