Launcher开发笔记1—选择您的程序

在Mainfest中添加代码,按Home的时候跳出选择列表

 

 

<category android:name="android.intent.category.HOME" />
  <category android:name="android.intent.category.DEFAULT" />
 

 整个Mainfest代码如下

 

 

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="ali.android.AliLauncher"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="4" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:label="@string/app_name"
            android:name=".LauncherActivity" >
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
                <!-- 配置桌面 -->
                <category android:name="android.intent.category.HOME" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
   
    </application>

</manifest>
 

完成后运行代码,效果如下


Launcher开发笔记1—选择您的程序

 

你可能感兴趣的:(Launcher)