mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -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