Back to project page mint.
The source code is released under:
GNU General Public License
If you think the Android project mint listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.slidingmenu.example; // w ww. ja v a2s . co m import android.content.Context; import android.content.Intent; import android.net.Uri; public class Util { public static void goToGitHub(Context context) { Uri uriUrl = Uri.parse("http://github.com/jfeinstein10/slidingmenu"); Intent launchBrowser = new Intent(Intent.ACTION_VIEW, uriUrl); context.startActivity(launchBrowser); } }