Back to project page Langleo.
The source code is released under:
Apache License
If you think the Android project Langleo 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.atteo.langleo_trial.activities; // ww w. ja va 2 s . c o m import android.app.Activity; import android.os.Bundle; import android.webkit.WebView; import com.atteo.langleo_trial.R; public class Updates extends Activity { private final String prefix = "file:///android_asset/updates.html"; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.help); } @Override public void onStart() { super.onStart(); WebView wv = (WebView) this.findViewById(R.id.help_webview); wv.loadUrl(prefix); } }