Back to project page FreeFlow.
The source code is released under:
Apache License
If you think the Android project FreeFlow 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.comcast.freeflow.examples.artbook; //from w w w . ja va 2 s. c o m import android.app.Activity; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; public class AboutActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_about); findViewById(R.id.github_button).setOnClickListener( new OnClickListener() { @Override public void onClick(View v) { String url = "https://github.com/Comcast/FreeFlow/"; Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); startActivity(browserIntent); } }); } }