Back to project page SlidingMenuLibrary.
The source code is released under:
Apache License
If you think the Android project SlidingMenuLibrary 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.jeremyfeinstein.slidingmenu.example; /* w w w. ja v a 2s . c o 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); } }