Skip to content

Instantly share code, notes, and snippets.

@darkwave
Created March 12, 2015 21:34
Show Gist options
  • Save darkwave/8912f25f755da208ef88 to your computer and use it in GitHub Desktop.
Save darkwave/8912f25f755da208ef88 to your computer and use it in GitHub Desktop.
Open a browser to a specific Url using Processing with Android Intent
import android.net.Uri;
import android.content.Intent;
void setup() {
}
void draw() {
}
void mousePressed() {
openWebPage("http://mondonerd.com");
}
void openWebPage(String url) {
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment