Back to project page T-CEP-Alert.
The source code is released under:
MIT License
If you think the Android project T-CEP-Alert 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.ruscoe.tcepalert; /*from ww w . j av a 2s.c om*/ import android.app.Activity; import android.os.Bundle; import android.text.method.LinkMovementMethod; import android.widget.TextView; /** * An activity used to display information about the application. * * @author Dan Ruscoe */ public class AboutActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.about); TextView aboutUrl = (TextView) findViewById(R.id.aboutUrl); aboutUrl.setMovementMethod(LinkMovementMethod.getInstance()); } }