Android: How to convert my regular Android app to Android Launchher app?
2 answers
You can specify a category android.intent.category.HOME
for your activity tag in the manifest file whose activity you want to launch as a launch activity, for example -
<activity android:name="com.domain.youractivityname">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</activity>
Hope this helps. thank.
+5
source to share