1 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 package="com.example.first" > 3 4 <uses-permission android:name="android.permission.INTERNET" /> 5 6 <application 7 android:allowBackup="true" 8 android:icon="@mipmap/ic_launcher" 9 android:label="@string/app_name" 10 android:roundIcon="@mipmap/ic_launcher_round" 11 android:supportsRtl="true" 12 android:theme="@style/Theme.First" > 13 <!--android:theme="@style/Theme.AppCompat.DayNight.NoActionBar" 把这句话放在这的话是所有的页面都会去掉标题栏--> 14 53 <activity 54 android:name=".TextViewActivity" 55 android:exported="false" /> 56 <activity 57 android:name=".ButtonActivity3" 58 android:exported="false" /> 59 <activity 60 android:name=".MainActivity" 61 android:exported="true" 62 > 63 <!--android:theme="@style/Theme.AppCompat.DayNight.NoActionBar" 这是去掉当前标题栏的意思--> 64 <!--android:label="Test" 设置当前标题栏的文字--> 65 <!--android:screenOrientation="portrait" 这个就是手机屏幕默认竖屏,不设置也可以--> 66 <!--android:screenOrientation="landscape" 这样就是横屏了--> 67 <intent-filter> 68 <action android:name="android.intent.action.MAIN" /> 69 70 <category android:name="android.intent.category.LAUNCHER" /> 71 </intent-filter> 72 <!--<intent-filter> 这个标签就是默认启动的activity--> 73 </activity> 74 </application> 75 76 </manifest>