implement file chooser using GtkFileChooserNative

This commit is contained in:
Julian Winkler
2024-03-16 18:14:46 +01:00
parent 276b5ca7ef
commit 6513195b9e
7 changed files with 136 additions and 13 deletions

View File

@@ -13,7 +13,7 @@ public class Uri implements Parcelable {
public static final Uri EMPTY = new Uri();
private URI uri;
public URI uri;
public static Uri parse(String s) {
Uri ret = new Uri();
@@ -160,6 +160,10 @@ public class Uri implements Parcelable {
return uri.getPath();
}
public String getAuthority() {
return uri.getAuthority();
}
@Override
public String toString() {
return String.valueOf(uri);