Edit data

android.intent.action.EDIT

Provide explicit editable access to the given data.

Activity implementing this intent provides explicit editable access to the given data.

Read also the Android documentation

Use

public void startEditData() {
    Intent intent = new Intent("android.intent.action.EDIT"); 
    intent.setData(dataUri); // data to be edited 
    if (intent.resolveActivity(getPackageManager()) != null) { 
        startActivity(intent);
    }
}

Example intent filter

<activity ...>
    <intent-filter>
        <action android:name="android.intent.action.EDIT" />
        <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