기술참고자료/Android | 2011. 3. 6. 22:00
TelephonyManager mTelephonyMgr =
(TelephonyManager)getSystemService(this.TELEPHONY_SERVICE);
String deviceId = mTelephonyMgr.getDeviceId();
In addition to the answer of Trevor Johns, you can use this as follows:
Trevor Johns의 답변에 추가하자면, 너는 아래와 같이 사용할 수 있을거야.
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>In emulator, you'll probably get a like a "00000..." value. getDeviceId() returns NULL if device ID is not available.애뮬레이터에서는 넌 아마도 "00000..." 같은 결과를 보게될거고, deviceId를 사용하지 못하는 경우에는 null을 리턴할 거야~
음. 역시 애뮬레이터라 그런거였구나!
오늘도 하나씩 배워간다.
계정설정화면으로 이동처리하기 (0) | 2011.03.14 |
---|---|
Sending HTML Email With Android Intent (0) | 2011.03.14 |
Android ActivityGroup and TabActivity Sample Application (0) | 2011.03.04 |
Android: TabActivity Nested Activities (0) | 2011.03.04 |
브로드캐스트리시버의 등록과 해제 (0) | 2011.03.04 |
Recent Comments