blob: 0618fd2c96bea5ced791a41ddebd6053bc25c544 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package winter.snowman.notifications;
import android.app.Activity;
import android.webkit.WebView;
import android.os.Bundle;
public class WebViewActivity extends Activity {
private WebView webView;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
webView = (WebView) findViewById(R.id.webView);
webView.loadUrl("http://snowman");
}
}
|