프로그래밍 정리/안드로이드

[안드로이드] 코드상에 테더링 검사(체크 유무)

주누다 2013. 2. 26. 16:29
반응형

public static boolean isTether(Context context)

{

boolean isWifiAPenalbed = false;


WifiManager wm = (WifiManager)context.getSystemService(Context.WIFI_SERVICE);

Method[] wmMethods = wm.getClass().getDeclaredMethods();


for(Method method : wmMethods)

{

if(method.getName().equals("isWifiApEnabled"))

{

try

{

isWifiAPenabled = (Boolean)method.invoke(wm);

}

catch(Exception e)

{ ; }

}

}

return isWifiAPenabled;

}

반응형