in AndroidManifest.xml

<activity
        android:name="MyActivity"
        android:label="@string/name">
<intent-filter android:priority="1">
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

Is it possible to change the android:priority by java code?
I find a method IntentFilter setPriority(), how get the Activity
intentFilter?

Thank you

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to