1. AndroidManifest.xml详解
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.activitydemo">
// 这里插入权限等等,当然也可以放在<application>的标签内,只不过影响的范围不同
<application android:allowBackup="true" //是否允许系统备份 android:icon="@mipmap/ic_launcher" // app图标的图片,来源是res中的mipmap文件夹 android:label="@string/app_name" // 按住crtl键来修改app的名字,但是优先级小于<activity>标签中的label属性 android:roundIcon="@mipmap/ic_launcher_round" //同样是app图标的照片,只不过是圆形的,以适配别的安卓手机 android:supportsRtl="true" // 声明application是否愿意支持从右到左(原来RTL就是right-to-left 的缩写...)的布局。 android:theme="@style/Theme.ActivityDemo"> <activity android:name=".MainActivity"> // 这里面也可添加label属性,且优先级大于<application>的label <intent-filter> // 加载入口,设置多个入口时优先是上面的 <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>