Android activity to add a network, and all associated code for dealing
[zxing.git] / android / src / com / google / zxing / client / android / wifi / Killer.java
1 /*
2  * Copyright (C) 2010 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.client.android.wifi;
18
19 import java.util.Timer;
20 import java.util.TimerTask;
21
22 import android.app.Activity;
23 import android.os.Handler;
24
25 /**
26  * Close the parent after a delay.
27  * @author Vikram Aggarwal
28  *
29  */
30 class Killer implements Runnable {
31   // Three full seconds
32   final int delay_millis = 3 * 1000;
33   Activity parent = null;
34   public Killer(Activity parent) {
35     this.parent = parent;
36   }
37   @Override
38   public void run() {
39     final Handler handler = new Handler();
40     Timer t = new Timer();
41     t.schedule(new TimerTask() {
42       @Override
43       public void run() {
44         handler.post(new Runnable() {
45           public void run() {
46             parent.finish();
47           }
48         });
49       }
50     }, delay_millis);
51   }
52 }