ActivityResultContracts.CreateDocument

public class ActivityResultContracts.CreateDocument extends ActivityResultContract


An ActivityResultContract to prompt the user to select a path for creating a new document of the given mimeType, returning the content: Uri of the item that was created.

The input is the suggested name for the new file.

This can be extended to override createIntent if you wish to pass additional extras to the Intent created by super.createIntent().

Summary

Public constructors

This method is deprecated. Using a wildcard mime type with CreateDocument is not recommended as it breaks the automatic handling of file extensions.

Public methods

@NonNull Intent

Create an intent that can be used for android.app.Activity.startActivityForResult.

final ActivityResultContract.SynchronousResult<Uri>

An optional method you can implement that can be used to potentially provide a result in lieu of starting an activity.

final Uri
parseResult(int resultCode, Intent intent)

Convert result obtained from android.app.Activity.onActivityResult to O.

Public constructors

CreateDocument

Added in 1.2.0
Deprecated in 1.5.0
public CreateDocument()

CreateDocument

Added in 1.5.0
public CreateDocument(@NonNull String mimeType)

Public methods

createIntent

Added in 1.2.0
@CallSuper
public @NonNull Intent createIntent(@NonNull Context context, @NonNull String input)

Create an intent that can be used for android.app.Activity.startActivityForResult.

getSynchronousResult

Added in 1.2.0
public final ActivityResultContract.SynchronousResult<UrigetSynchronousResult(@NonNull Context context, @NonNull String input)

An optional method you can implement that can be used to potentially provide a result in lieu of starting an activity.

Returns
ActivityResultContract.SynchronousResult<Uri>

the result wrapped in a SynchronousResult or null if the call should proceed to start an activity.

parseResult

Added in 1.9.0-alpha03
public final Uri parseResult(int resultCode, Intent intent)

Convert result obtained from android.app.Activity.onActivityResult to O.