WifiManager wifiManager = (WifiManager) getSystemService(WIFI_SERVICE);
WifiInfo wifiInfo = wifiManager.getConnectionInfo();
Preference wifiMacAddressPref = findPreference(KEY_MAC_ADDRESS);
String macAddress = wifiInfo == null ? null : wifiInfo.getMacAddress();
[출처] Android Side - http://www.androidside.com/bbs/board.php?bo_table=B49&wr_id=1116#c_1124
public class
WifiInfo
extends Object
implements Parcelable
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Return the basic service set identifier (BSSID) of the current access point. | |||||||||||
Map a supplicant state into a fine-grained network connectivity state. | |||||||||||
Returns the current link speed in LINK_SPEED_UNITS . | |||||||||||
Each configured network has a unique small integer ID, used to identify the network when performing operations on the supplicant. | |||||||||||
Returns the received signal strength indicator of the current 802.11 network. | |||||||||||
Returns the service set identifier (SSID) of the current 802.11 network. | |||||||||||
Return the detailed state of the supplicant's negotiation with an access point, in the form of a SupplicantState object. | |||||||||||
Returns a string containing a concise, human-readable description of this object. |
'프로그래밍 > 안드로이드' 카테고리의 다른 글
안드로이드에서 챠트 사용하기 (1) | 2010.10.07 |
---|---|
안드로이드 [초보플밍] - Android Requires .class compatibility set to 5.0. Please fix project properties 에러 해결하기 (1) | 2010.10.07 |
안드로이드 이클립스 외부 자바 라이브러리 사용하기 (0) | 2010.10.07 |
Use Android WebView and Google Chart API to display data (1) | 2010.10.07 |
[안드로이드 팁] 안드로이드 TextView에서의 줄간격 설정하기 (0) | 2010.10.05 |
안드로이드 [초보플밍] - com.google.android.maps 패키지 오류 (0) | 2010.10.05 |
위치 기반 서비스 (0) | 2010.10.05 |
안드로이드 [초보플밍] - adb uninstall com.example.android.notepad 에러 (1) | 2010.10.05 |
안드로이드 [초보플밍] - java.io.IOException : Unable to upload file : null 해결책 (0) | 2010.10.05 |