在我的应用程序执行过程中,我如何获得 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 ""
}

但是,这是一个私有(private) 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) { "" }
}

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

关于android - 以编程方式获取设备的 EMUI 版本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/61352817/

10-10 00:09