Back to project page openaccessbutton.
The source code is released under:
MIT License
If you think the Android project openaccessbutton 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.openaccessbutton.openaccessbutton.about; //from w ww .ja v a 2 s .c o m import android.annotation.TargetApi; import android.app.Activity; import android.os.Build; import android.os.Bundle; import android.os.Handler; import android.text.method.LinkMovementMethod; import android.view.MotionEvent; import android.view.View; import android.widget.TextView; import org.openaccessbutton.openaccessbutton.R; public class AboutActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_about); TextView aboutText = (TextView) findViewById(R.id.aboutText); aboutText.setMovementMethod(LinkMovementMethod.getInstance()); } }