mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-20 00:22:51 -06:00
add the forgoten HelpActivity.java
This commit is contained in:
@@ -0,0 +1,15 @@
|
|||||||
|
package org.grammaticalframework.ui.android;
|
||||||
|
|
||||||
|
import android.app.Activity;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.webkit.WebView;
|
||||||
|
|
||||||
|
public class HelpActivity extends Activity {
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
setContentView(R.layout.activity_help);
|
||||||
|
WebView wv = (WebView) findViewById(R.id.help_content);
|
||||||
|
wv.loadUrl("file:///android_asset/help_content.html");
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user