Index: sky/shell/org/domokit/sky/shell/SkyActivity.java |
diff --git a/sky/shell/org/domokit/sky/shell/SkyActivity.java b/sky/shell/org/domokit/sky/shell/SkyActivity.java |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b0eb9c066252657d3df97ce714769302014ae9a6 |
--- /dev/null |
+++ b/sky/shell/org/domokit/sky/shell/SkyActivity.java |
@@ -0,0 +1,30 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+package org.domokit.sky.shell; |
+ |
+import android.app.Activity; |
+import android.os.Bundle; |
+ |
+/** |
+ * Base class for activities that use Sky. |
+ */ |
+public class SkyActivity extends Activity { |
+ private PlatformView mView; |
+ |
+ /** |
+ * @see android.app.Activity#onCreate(android.os.Bundle) |
+ */ |
+ @Override |
+ protected void onCreate(Bundle savedInstanceState) { |
+ super.onCreate(savedInstanceState); |
+ SkyMain.ensureInitialized(getApplicationContext()); |
+ mView = new PlatformView(this); |
+ setContentView(mView); |
+ } |
+ |
+ public void loadUrl(String url) { |
+ mView.loadUrl(url); |
+ } |
+} |