You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
implement file chooser using GtkFileChooserNative
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user