Back to project page droidling.
The source code is released under:
Copyright (c) 2012 Keith Trnka Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Softwa...
If you think the Android project droidling 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.github.ktrnka.droidling; //from w w w . j a v a2 s . co m import android.os.Bundle; import android.text.method.LinkMovementMethod; import android.widget.TextView; import com.actionbarsherlock.app.SherlockActivity; /** * The activity that describes the app, the author, etc. Not much code, most of * the work is in the XML file. * * @author keith.trnka */ public class AboutInterpersonalActivity extends SherlockActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.about_interpersonal); // these lines are necessary for clickable TextViews with <a href> in // the strings TextView textView = (TextView) findViewById(R.id.about_shared_vocab); textView.setMovementMethod(LinkMovementMethod.getInstance()); } }