summaryrefslogtreecommitdiff
path: root/platform/android/java
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2014-12-15 15:42:58 -0300
committerJuan Linietsky <reduzio@gmail.com>2014-12-15 15:42:58 -0300
commit089d7fa171e3a3305991047e82b4043d4f05783f (patch)
treea41af5ab93f6d745962e471da8dc6003e6b8e430 /platform/android/java
parentbe4e40e90a5a322f6a7cec4893854ef5b15db600 (diff)
Small batch of fixes
-=-=-=-=-=-=-=-=-=-= -Fixed looping error in AudioStreamResampled -winrt port progress -fixes in material in ambient light
Diffstat (limited to 'platform/android/java')
-rw-r--r--platform/android/java/src/com/android/godot/GodotIO.java22
1 files changed, 20 insertions, 2 deletions
diff --git a/platform/android/java/src/com/android/godot/GodotIO.java b/platform/android/java/src/com/android/godot/GodotIO.java
index d149916893..ff0eb5edcc 100644
--- a/platform/android/java/src/com/android/godot/GodotIO.java
+++ b/platform/android/java/src/com/android/godot/GodotIO.java
@@ -438,8 +438,26 @@ public class GodotIO {
try {
Log.v("MyApp", "TRYING TO OPEN URI: " + p_uri);
- Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(p_uri));
- activity.startActivity(myIntent);
+ String path = p_uri;
+ String type="";
+ if (path.startsWith("/")) {
+ //absolute path to filesystem, prepend file://
+ path="file://"+path;
+ if (p_uri.endsWith(".png") || p_uri.endsWith(".jpg") || p_uri.endsWith(".gif") || p_uri.endsWith(".webp")) {
+
+ type="image/*";
+ }
+ }
+
+ Intent intent = new Intent();
+ intent.setAction(Intent.ACTION_VIEW);
+ if (!type.equals("")) {
+ intent.setDataAndType(Uri.parse(path), type);
+ } else {
+ intent.setData(Uri.parse(path));
+ }
+
+ activity.startActivity(intent);
return 0;
} catch (ActivityNotFoundException e) {