Resolve Unresolved Intent

org.openintents.action.RESOLVE_UNRESOLVED_INTENT

Delegates the user to a selection of possible applications that can resolve the given intent.

Use

public void startResolveUnresolvedIntent() {
    Intent intent = new Intent("org.openintents.action.RESOLVE_UNRESOLVED_INTENT"); 
    intent.setData(dataUri); // uri-encoded intent 
    if (intent.resolveActivity(getPackageManager()) != null) { 
        startActivity(intent);
    }
}

Example intent filter

<activity ...>
    <intent-filter>
        <action android:name="org.openintents.action.RESOLVE_UNRESOLVED_INTENT" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>
            

Apps Providing an Implementation

Search on Github

Search on Google Play, AppBrain, Amazon App store or similar (not yet available - please make this happen!)

For Specification Writers

Edit on Github