AndroidMainifest.xml文件属性

2022/2/1 23:39:42

本文主要是介绍AndroidMainifest.xml文件属性,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 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>

 



这篇关于AndroidMainifest.xml文件属性的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程