我必须发送这个jasonObject来获得响应
[" DEVICE_ID" :" ****", " device_locale" :" ar", " OS" :" android" ]
我如何访问此信息:设备ID和本地语言?
答案 0 :(得分:1)
您可以使用以下util类来获取设备ID和区域设置。
public class DeviceInfoUtil {
public static String getDeviceId(Context context){
return Settings.Secure.getString(context.getContentResolver(), Settings.Secure.ANDROID_ID);
}
public static String getDeviceLocale(){
return Locale.getDefault().getLanguage();
}
}
答案 1 :(得分:0)