美文网首页
AndroidManifest基本

AndroidManifest基本

作者: 四月八日君尋 | 来源:发表于2020-02-22 15:22 被阅读0次
    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.april.helloworld">//申明包名(等价于图一位置的包,或者通俗称文件夹)
    
        <application //应用配置
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"//配置app图标,表示引用了res包下mipmap下的ic_launcher文件(如图二)
            android:label="@string/app_name"//配置app的label,表示引用了res包下value的app_name字段(如图三)
            android:roundIcon="@mipmap/ic_launcher_round"
            android:supportsRtl="true"
            android:theme="@style/AppTheme">
            <activity android:name=".MainActivity"//活动配置(应该是com.april.helloworld.MainActivity,由于已经在顶部声明,这里省略的写法)
                android:label="This is first active"//活动页面title(会显示在页面顶部,可以不要)
                >
                <intent-filter>//配置为主活动
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.LAUNCHER" />//作为程序启动器
                </intent-filter>
            </activity>
        </application>
    </manifest>
    
    
    图一、申明包位置.png 图二、引用图片资源.png 图三、字段申明与引用.png

    相关文章

      网友评论

          本文标题:AndroidManifest基本

          本文链接:https://www.haomeiwen.com/subject/dgacqhtx.html