Back to project page attendance-viewer.
The source code is released under:
MIT License
If you think the Android project attendance-viewer 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.juet.attendance; /* w w w . ja v a 2 s. c om*/ import android.os.Bundle; import android.text.method.LinkMovementMethod; import android.widget.TextView; import com.actionbarsherlock.app.SherlockActivity; import com.juet.attendance.R; public class About extends SherlockActivity { protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_about); TextView t2 = (TextView) findViewById(R.id.textView6); t2.setMovementMethod(LinkMovementMethod.getInstance()); } }