Android 썸네일형 리스트형 Hotspot 활성화 코드 Android Source Code중 Hotspot을 활성화 시키는 방법에 대해서 포스팅하고자 합니다. Android에서 Hotspot을 활성화하는 코드는 다음과 같습니다. WifiManage mWifiManager = (WifiManager) mContext.getApplicationContext().getSystemService(Context.WIFI_SERVICE);ConnectivityManager cman = (ConnectivityManager) mContext.getApplicationContext().getSystemService(Context.CONNECTIVITY_SERVICE);Method[] methods = cman.getClass().getMethods(); boolean res.. 더보기 Network Interface Name 확인 안녕하세요? 오랫만에 포스팅을 하네요. 요즘 안드로이드 프로그래밍에 푹 빠져서 허우적대고 있습니다. 개발이 주업이다보니.. 이제는 안드로이드 까지 하고 있네요.. Network Interface 확인 방법에 대해서 포스팅 하고자 합니다. 샘플 코드는 다음과 같습니다. public boolean getCheckWiFiInterface() { boolean bWirelessInterfaceFlag = false; try { for(Enumeration list = NetworkInterface.getNetworkInterfaces(); list.hasMoreElements();) { NetworkInterface i = list.nextElement(); Log.d(TAG, "[ getCheckWiFiInt.. 더보기 이전 1 다음