Android 添加自己的apk作为Launcher

408 阅读1分钟

要将自己的apk作为Launcher,需要在AndroidManifest.xml文件中声明该应用程序为Launcher,并设置相应的intent-filter,以下是示例代码:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.mylauncher">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

在以上示例代码中,通过在MainActivity的intent-filter中声明android.intent.category.LAUNCHER,将该应用程序设置为Launcher。