기술참고자료/Eclipse | 2011. 4. 20. 10:36
Eclipse Juno 버전에 Market Place 설치하기 (0) | 2013.05.07 |
---|---|
java에서 클래스 명, 라인 번호 찍기 (0) | 2011.06.20 |
Eclipse에서 Git로 소스코드 가져오기 (1) | 2011.03.22 |
Eclipse Galileo 에러발생시 대처방법 (0) | 2009.11.05 |
기술참고자료/Android | 2011. 4. 19. 17:23
View에 백그라운드 반복설정 (0) | 2011.04.20 |
---|---|
<TextView>에서의 줄간격 설정하기 (0) | 2011.04.20 |
<support-screen> (0) | 2011.04.19 |
SIM의 IMSI값 읽어오기 (0) | 2011.04.19 |
단말정보 조회관련 정보 (0) | 2011.04.19 |
기술참고자료/Android | 2011. 4. 19. 17:15
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens
android:largeScreens="false"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"
/>
</manifest>
<TextView>에서의 줄간격 설정하기 (0) | 2011.04.20 |
---|---|
<supports-screens> Guide (1) | 2011.04.19 |
SIM의 IMSI값 읽어오기 (0) | 2011.04.19 |
단말정보 조회관련 정보 (0) | 2011.04.19 |
Android Graphics Example - Bitmap Image (1) | 2011.04.16 |
기술참고자료/Android | 2011. 4. 19. 16:13
parser.register("+CIMI", new AtCommandHandler() {});
@Override
public AtCommandResult handleActionCommand() {
// AT+CIMI
String imsi = mPhone.getSubscriberId();
if (imsi == null || imsi.length() == 0) {
return reportCmeError(BluetoothCmeError.SIM_FAILURE);
} else {
return new AtCommandResult(imsi);
}
}
String phoneIMSI =방법3.
android.os.SystemProperties.get(android.telephony.TelephonyProperties.PROPERTY_IMSI);
String phoneIMEI =
android.os.SystemProperties.get(android.telephony.TelephonyProperties.PROPERTY_IMEI);
TelephonyManager mTelephonyMgr =
(TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
String imsi = mTelephonyMgr.getSubscriberId();
String imei = mTelephonyMgr.getDeviceId();
String phoneNumber = mTelephonyMgr.getLine1Number();
<supports-screens> Guide (1) | 2011.04.19 |
---|---|
<support-screen> (0) | 2011.04.19 |
단말정보 조회관련 정보 (0) | 2011.04.19 |
Android Graphics Example - Bitmap Image (1) | 2011.04.16 |
Android Graphics Example (0) | 2011.04.15 |
기술참고자료/Android | 2011. 4. 19. 16:07
<support-screen> (0) | 2011.04.19 |
---|---|
SIM의 IMSI값 읽어오기 (0) | 2011.04.19 |
Android Graphics Example - Bitmap Image (1) | 2011.04.16 |
Android Graphics Example (0) | 2011.04.15 |
[Android] Marquee effect in TextView (0) | 2011.04.06 |