Back to project page checkit.
The source code is released under:
GNU General Public License
If you think the Android project checkit listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * About activity for CheckIt./*from w w w.j a v a2 s. c om*/ * * @author Yujian Zhang <yujian{dot}zhang[at]gmail(dot)com> * * License: * GNU General Public License v2 * http://www.gnu.org/licenses/gpl-2.0.html * Copyright (C) 2011-2012 Yujian Zhang */ package net.whily.android.checkit; import android.app.Activity; import android.os.Bundle; import android.webkit.WebView; public final class AboutActivity extends Activity { private WebView browser; @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); setContentView(R.layout.about); browser = (WebView)findViewById(R.id.webkit); browser.loadData(getString(R.string.about_html), "text/html", "UTF-8"); } }