Back to project page tennis-charting-android.
The source code is released under:
GNU General Public License
If you think the Android project tennis-charting-android 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.inklily.tennischarting; //from www .j av a2s . c om import android.app.Activity; import android.os.Bundle; import android.webkit.WebView; /** * Created by mrdog on 2/25/14. */ public class HelpActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.help_activity); WebView wv = (WebView) findViewById(R.id.help_webview); wv.loadUrl("file:///android_asset/help.html"); } }