You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
simplesshd/app/src/main/java/org/galexander/sshd/DocActivity.java

28 lines
563 B

package org.galexander.sshd;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class DocActivity extends Activity
{
public static final String url =
"http://www.galexander.org/software/simplesshd";
private WebView wv = null;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.doc);
wv = (WebView)findViewById(R.id.docview);
}
public void onResume() {
super.onResume();
wv.loadUrl(url);
}
public void onPause() {
super.onPause();
}
}