X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=android%2Fsrc%2Fcom%2Fgoogle%2Fzxing%2Fclient%2Fandroid%2Fwifi%2FKiller.java;fp=android%2Fsrc%2Fcom%2Fgoogle%2Fzxing%2Fclient%2Fandroid%2Fwifi%2FKiller.java;h=8eba9cc038e74acdbb6a4ff9175730fc4e653ec5;hb=4cbbf3bf20e39925ade3611213d757f5b3ff65f5;hp=0000000000000000000000000000000000000000;hpb=bbe5f11ac2d37bcb94b14d3fe720924e172d2ead;p=zxing.git 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 index 00000000..8eba9cc0 --- /dev/null +++ b/android/src/com/google/zxing/client/android/wifi/Killer.java @@ -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); + } +}