[packages/apps/Settings] Revert "fix hotspot disable bug"

This reverts commit 7083844fb1691d14cce29eb3439ce7998ade1c9f.
This commit is contained in:
Firefly
2015-08-24 11:05:10 +08:00
committed by djw
parent fbee57a240
commit 12b13ebac9

View File

@ -38,7 +38,6 @@ import android.provider.Settings;
import android.text.TextUtils;
import android.util.Log;
import android.widget.Toast;
import android.os.Handler;
public class WifiApEnabler {
private final Context mContext;
@ -72,17 +71,6 @@ public class WifiApEnabler {
}
};
//$_rbox_$_modify_by_huangjc
Handler handler = new Handler();
Runnable runnable = new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
handleWifiApStateChanged(1000);// 发生了错误
}
};
//$_rbox_$_end
public WifiApEnabler(Context context, SwitchPreference switchPreference) {
mContext = context;
mSwitch = switchPreference;
@ -137,9 +125,6 @@ public class WifiApEnabler {
if (mSwitch != null) {
/* Disable here, enabled on receiving success broadcast */
mSwitch.setEnabled(false);
//$_rbox_$_modify_by_huangjc
handler.postDelayed(runnable, 15000);// 打开定时器,10秒收不到广播发出失败信息
//$_rbox_$_end
}
} else {
if (mSwitch != null) {
@ -198,9 +183,6 @@ public class WifiApEnabler {
}
private void handleWifiApStateChanged(int state) {
//$_rbox_$_modify_by_huangjc
handler.removeCallbacks(runnable);// 关闭定时器
//$_rbox_$_end
switch (state) {
case WifiManager.WIFI_AP_STATE_ENABLING:
mSwitch.setSummary(R.string.wifi_tether_starting);