ActivityResultContracts.TakeVideo

Added in 1.2.0
Deprecated in 1.3.0

public class ActivityResultContracts.TakeVideo extends ActivityResultContract


An ActivityResultContract to take a video saving it into the provided content-Uri.

Returns a thumbnail.

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

Summary

Public constructors

Public methods

@NonNull Intent

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

final ActivityResultContract.SynchronousResult<Bitmap>

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

final Bitmap
parseResult(int resultCode, Intent intent)

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

Public constructors

TakeVideo

Added in 1.2.0
Deprecated in 1.3.0
public TakeVideo()

Public methods

createIntent

Added in 1.2.0
Deprecated in 1.3.0
@CallSuper
public @NonNull Intent createIntent(@NonNull Context context, @NonNull Uri input)

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

getSynchronousResult

Added in 1.2.0
Deprecated in 1.3.0
public final ActivityResultContract.SynchronousResult<BitmapgetSynchronousResult(@NonNull Context context, @NonNull Uri 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<Bitmap>

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

parseResult

Added in 1.9.0-beta01
Deprecated in 1.9.0-beta01
public final Bitmap parseResult(int resultCode, Intent intent)

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