2014-05-16 3 views

답변

0

Build 클래스에는 필요한 모든 정보가 포함되어 있어야합니다. 당신이 필요로하는 정보를 얻을 수 here

Nested Classes 
class Build.VERSION Various version strings. 
class Build.VERSION_CODES Enumeration of the currently known SDK version codes. 
Constants 
String UNKNOWN Value used for when a build property is unknown. 
Fields 
public static final String BOARD The name of the underlying board, like "goldfish". 
public static final String BOOTLOADER The system bootloader version number. 
public static final String BRAND The consumer-visible brand with which the product/hardware will be associated, if any. 
public static final String CPU_ABI The name of the instruction set (CPU type + ABI convention) of native code. 
public static final String CPU_ABI2 The name of the second instruction set (CPU type + ABI convention) of native code. 
public static final String DEVICE The name of the industrial design. 
public static final String DISPLAY A build ID string meant for displaying to the user 
public static final String FINGERPRINT A string that uniquely identifies this build. 
public static final String HARDWARE The name of the hardware (from the kernel command line or /proc). 
public static final String HOST  
public static final String ID Either a changelist number, or a label like "M4-rc20". 
public static final String MANUFACTURER The manufacturer of the product/hardware. 
public static final String MODEL The end-user-visible name for the end product. 
public static final String PRODUCT The name of the overall product. 
public static final String RADIO This field was deprecated in API level 14. The radio firmware version is frequently not available when this class is initialized, leading to a blank or "unknown" value for this string. Use getRadioVersion() instead. 
public static final String SERIAL A hardware serial number, if available. 
public static final String TAGS Comma-separated tags describing the build, like "unsigned,debug". 
public static final long TIME  
public static final String TYPE The type of build, like "user" or "eng". 
public static final String USER  

사용 Build.*을 확인합니다.

1

먼저 "android-sdk"페이지에서 "Build"클래스를 살펴보십시오 : http://developer.android.com/reference/android/os/Build.html.

// Device model 
String PhoneModel = android.os.Build.MODEL; 

// Android version 
String AndroidVersion = android.os.Build.VERSION.RELEASE; 

예 :

public String getDeviceName() { 

    String manufacturer = Build.MANUFACTURER; 
    String model = Build.MODEL; 

    if (model.startsWith(manufacturer)) { 
     return capitalize(model); 
    } else { 
     return capitalize(manufacturer) + " " + model; 
    } 
} 

private String getAndroidVersion() { 
    return android.os.Build.VERSION.RELEASE; 
} 

private String capitalize(String s) { 
    if (s == null || s.length() == 0) { 
     return ""; 
    } 
    char first = s.charAt(0); 
    if (Character.isUpperCase(first)) { 
     return s; 
    } else { 
     return Character.toUpperCase(first) + s.substring(1); 
    } 
} 

private String getDeviceId() { 
    String deviceId = ""; 
    final TelephonyManager mTelephony = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); 
    if (mTelephony.getDeviceId() != null) { 
     deviceId = mTelephony.getDeviceId(); 
    } else { 
     deviceId = Secure.getString(getApplicationContext() 
       .getContentResolver(), Secure.ANDROID_ID); 
    } 
    return deviceId; 
} 
관련 문제