What's new
DroidForums.net | Android Forum & News

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

android.intent.action.MAIN

isup

New Member
There is no android.intent.action.MAIN in the activity's intent filter of my app's AndroidManifest.xml. However, my app's activity still can be triggered by it. Below is part of my AndroidManifest.xml. Can anyone tell me the reason?

<application android:icon="@drawable/icon" android:label="@string/lapp_name" android:name=".Application">
<activity android:name=".LauncherActivity" android:label="@string/label_app_name">
<intent-filter>
<action android:name="com.home.intent.action.MYAPP" />
</intent-filter>
</activity>
 
Back
Top