去掉 Android 应用程序的标题栏有两种方法:
android:theme="@android:style/Theme.NoTitleBar"
requestWindowFeature(Window.FEATURE_NO_TITLE);
以上两种方法都可以去掉 Android 应用程序的标题栏。