For notepad e.g for one activity I see more than one intent-filter is
defined.. what does this grouping mean

<activity class=".NotesList" android:label="@string/title_notes_list">
             <intent-filter>
                 <action android:value="android.intent.action.MAIN" />
                 <category
android:value="android.intent.category.LAUNCHER" />
             </intent-filter>
             <intent-filter>
                 <action android:value="android.intent.action.VIEW" />
                 <action android:value="android.intent.action.EDIT" />
                 <action android:value="android.intent.action.PICK" />
                 <category
android:value="android.intent.category.DEFAULT" />
                 <type android:value="vnd.android.cursor.dir/
vnd.google.note" />
             </intent-filter>
             <intent-filter>
                 <action
android:value="android.intent.action.GET_CONTENT" />
                 <category
android:value="android.intent.category.DEFAULT" />
                 <type android:value="vnd.android.cursor.item/
vnd.google.note" />
             </intent-filter>
         </activity>

Regards,
Nagendra



On May 16, 9:55 pm, Raja Nagendra Kumar <[EMAIL PROTECTED]>
wrote:
> Hi,
>
> Against each activity I see intent-filter tag.. what is it indent to
> how do we know such tags and its values..
>
> e.g as in/..
>  <intent-filter>
>                 <action android:name="android.intent.action.MAIN"/>
>                 <category android:name="android.intent.category.SAMPLE_CODE"/>
>             </intent-filter>
>
> Regards,
> Nagendra
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to