Back to project page Sketcher-Tab.
The source code is released under:
Apache License
If you think the Android project Sketcher-Tab 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.sketchertab; /*from w ww.j a v a 2 s. c om*/ import android.app.Dialog; import android.content.Context; import android.text.Html; import android.text.method.LinkMovementMethod; import android.widget.TextView; public class AboutDialog extends Dialog { public AboutDialog(Context context) { super(context); setTitle(R.string.about_title); setContentView(R.layout.about); TextView aboutTextView = (TextView) findViewById(R.id.about_text_view); aboutTextView.setText(Html.fromHtml(context.getResources().getString(R.string.about_text))); aboutTextView.setMovementMethod(LinkMovementMethod.getInstance()); } }