【问题标题】:How I can get the architecture of the chip in android runtime如何在 android 运行时获取芯片的架构 【发布时间】:2014-12-22 22:46:11 【问题描述】: 如何在android运行时获取骁龙芯片的架构? 我不知道该怎么做。 谢谢。 【问题讨论】: 标签: android cpu-architecture processor 【解决方案1】: 尝试使用: String arch = System.getProperty("os.arch"); Here 是System.getProperty() 参数的完整列表。 【讨论】: