Android activity to add a network, and all associated code for dealing
[zxing.git] / android / src / com / google / zxing / client / android / wifi / Killer.java
diff --git a/android/src/com/google/zxing/client/android/wifi/Killer.java b/android/src/com/google/zxing/client/android/wifi/Killer.java
new file mode 100644 (file)
index 0000000..8eba9cc
--- /dev/null
@@ -0,0 +1,52 @@
+/*
+ * Copyright (C) 2010 ZXing authors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.google.zxing.client.android.wifi;
+
+import java.util.Timer;
+import java.util.TimerTask;
+
+import android.app.Activity;
+import android.os.Handler;
+
+/**
+ * Close the parent after a delay.
+ * @author Vikram Aggarwal
+ *
+ */
+class Killer implements Runnable {
+  // Three full seconds
+  final int delay_millis = 3 * 1000;
+  Activity parent = null;
+  public Killer(Activity parent) {
+    this.parent = parent;
+  }
+  @Override
+  public void run() {
+    final Handler handler = new Handler();
+    Timer t = new Timer();
+    t.schedule(new TimerTask() {
+      @Override
+      public void run() {
+        handler.post(new Runnable() {
+          public void run() {
+            parent.finish();
+          }
+        });
+      }
+    }, delay_millis);
+  }
+}