Back to project page importnokiabackup.
The source code is released under:
GNU General Public License
If you think the Android project importnokiabackup 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 net.csipa.importnokiabackup; //from www.j ava2 s . c o m import android.app.Activity; import android.os.Bundle; import android.text.method.LinkMovementMethod; import android.view.Menu; import android.view.MenuItem; import android.widget.TextView; public class About extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_about); TextView t2 = (TextView) findViewById(R.id.about_textview); t2.setMovementMethod(LinkMovementMethod.getInstance()); } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); if (id == R.id.action_about) { this.closeOptionsMenu(); startActivity(item.getIntent()); return true; } return super.onOptionsItemSelected(item); } }