add Intent.setDataAndType() method

This commit is contained in:
Julian Winkler
2024-02-16 11:30:34 +01:00
parent 1d8e140a3b
commit 838530fe59

View File

@@ -272,4 +272,10 @@ public class Intent {
public static Intent createChooser(Intent target, CharSequence title) { public static Intent createChooser(Intent target, CharSequence title) {
return target; return target;
} }
public Intent setDataAndType(Uri uri, String type) {
this.data = uri;
this.type = type;
return this;
}
} }