Android choice of intentions will not appear

When users have many possible applications that can take a certain kind of intention, the tenant requires time to download, a noticeable amount of time at least

But this wait occurs after I run the intent, is it possible to indicate in some way some loading indicator or visual element of the intermediary to make the time less noticeable to the user?

+8
android runnable android-intent
source share
1 answer

I added this to my manifest for an activity that uses selection:

<intent-filter> <action android:name="android.intent.action.CHOOSER" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> 

Now it loads faster.

0
source share

All Articles