Back to project page blokish.
The source code is released under:
GNU General Public License
If you think the Android project blokish 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 org.scoutant.blokish; //from www. j a va2 s. c om 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 Help extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.help); View v = findViewById(R.id.video); v.setOnClickListener(new OnClickListener() { public void onClick(View v) { // startActivity( new Intent( Intent.ACTION_VIEW, Uri.parse("http://www.youtube.com/watch?v=3Q7ow07uaMw"))); startActivity( new Intent( Intent.ACTION_VIEW, Uri.parse("vnd.youtube://3Q7ow07uaMw"))); } }); } }