User Info Chooser

net.ivantis.userinfo.chooser

Allows the user to choose information (username, password, email address..) to be filled into another application

Use

public void startUserInfoChooser(String id, String types) {
    Intent intent = new Intent("net.ivantis.userinfo.chooser"); 
    intent.putExtra("net.ivantis.userinfo.settingId", id); // String
    intent.putExtra("net.ivantis.userinfo.types", types); // String
    if (intent.resolveActivity(getPackageManager()) != null) { 
        startActivity(intent);
    }
}

Example intent filter

<activity ...>
    <intent-filter>
        <action android:name="net.ivantis.userinfo.chooser" />
        <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