Back to project page sixgrid.
The source code is released under:
MIT License
If you think the Android project sixgrid 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 io.pure.sixgrid; /*from w w w . j a v a2s . c o m*/ import android.app.Activity; import android.os.Bundle; import android.webkit.WebView; public class License extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); WebView license = new WebView(this); setContentView(license); license.loadUrl("file:///android_asset/license.html"); } }