以编程方式获取设备的 EMUI 版本

Get EMUI version of a device programmatically

在我的应用运行过程中,如何获取EMUI版本? 有没有获取EMUI版本的系统方法?

可以通过访问系统属性来实现,例如:

@SuppressLint("PrivateApi")
private fun Any?.readEMUIVersion() : String {
    try {
        val propertyClass = Class.forName("android.os.SystemProperties")
        val method: Method = propertyClass.getMethod("get", String::class.java)
        var versionEmui = method.invoke(propertyClass, "ro.build.version.emui") as String
        if (versionEmui.startsWith("EmotionUI_")) {
            versionEmui = versionEmui.substring(10, versionEmui.length)
        }
        return versionEmui
    } catch (e: ClassNotFoundException) {
        e.printStackTrace()
    } catch (e: NoSuchMethodException) {
        e.printStackTrace()
    } catch (e: IllegalAccessException) {
        e.printStackTrace()
    } catch (e: InvocationTargetException) {
        e.printStackTrace()
    }
    return ""
}

但是,这是私有的 Api,如果它不适合您的情况,您可以使用此解决方法(适用于 EMUI 9 和 10,但绝对不适用于 EMUI 5 或下面 (~android 7)):

@TargetApi(3)
fun Any?.extractEmuiVersion() : String {
    return try {
        val line: String = Build.DISPLAY
        val spaceIndex = line.indexOf(" ")
        val lastIndex = line.indexOf("(")
        if (lastIndex != -1) {
            line.substring(spaceIndex, lastIndex)
        } else line.substring(spaceIndex)
    } catch (e: Exception) { "" }
}

非常感谢任何改进答案的建议!