반응형
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;
}
반응형
'프로그래밍 정리 > 안드로이드' 카테고리의 다른 글
[Android] MotionEvent, setOnTouchListener = ACTION_MOVE, ACTION_UP, ACTION_DOWN (0) | 2013.06.03 |
---|---|
[안드로이드] 카카오톡 형식 키패드 위에 버튼 올리기 (0) | 2013.03.14 |
[안드로이드] Bold, Italic, Underline - HtmlFomat 이용 (0) | 2013.01.09 |
[안드로이드] 키보드에 EditText 뷰가 가려질 때 (0) | 2013.01.09 |
[안드로이드 ] 키보드 강제로 내리기 올리기 (0) | 2013.01.09 |