1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-02 03:20:06 +00:00

Android: added URL launching.

This commit is contained in:
jules 2012-02-24 17:48:18 +00:00
parent b69b7c7647
commit 54c82b3120
5 changed files with 18 additions and 7 deletions

View file

@ -492,4 +492,9 @@ public final class JuceAppActivity extends Activity
return null;
}
public final void launchURL (String url)
{
startActivity (new Intent (Intent.ACTION_VIEW, Uri.parse (url)));
}
}