安卓目录理解 —— AndroidMainifest.xml

人生难得几回搏,此时不搏待何时。这篇文章主要讲述安卓目录理解 —— AndroidMainifest.xml相关的知识,希望能为你提供帮助。

< ?xml version="1.0" encoding="utf-8"?> < manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.myapplication"> < application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> < activity android:name=".MainActivity"> < intent-filter> < action android:name="android.intent.action.MAIN"/> < category android:name="android.intent.category.LAUNCHER"/> < /intent-filter> < /activity> < /application> < /manifest>

安卓目录理解 —— AndroidMainifest.xml

文章图片

=======================================================================================
 
1. 这个文件是最外层的文件,程序从这里进去,然后会执行java里面的MainActivity,在Mainfest.xml里面已经申明了主程序入口
 
安卓目录理解 —— AndroidMainifest.xml

文章图片

icon图标的位置
安卓目录理解 —— AndroidMainifest.xml

文章图片

app的显示名称
安卓目录理解 —— AndroidMainifest.xml

文章图片

App的主题,字体颜色,大小
安卓目录理解 —— AndroidMainifest.xml

文章图片

安卓目录理解 —— AndroidMainifest.xml

文章图片

获取的主题内容就是匹配的name,替换name就能更换主题的样式
++++++++++++++++++++++++++++++
app的主main
安卓目录理解 —— AndroidMainifest.xml

文章图片

com.example.myapplication 是被省略的内内容
com.example.myapplication.MainActivity
【安卓目录理解 —— AndroidMainifest.xml】 

    推荐阅读