有沒有API 判斷Android 系統是MIUI 的,魅族的Flyme ,還是原生的?
如題,只需要判斷這三個系統就好。
// 檢測MIUI
import java.io.IOException;
public final class MIUIUtils {
private static final String KEY_MIUI_VERSION_CODE = "ro.miui.ui.version.code";
private static final String KEY_MIUI_VERSION_NAME = "ro.miui.ui.version.name";
private static final String KEY_MIUI_INTERNAL_STORAGE = "ro.miui.internal.storage";
public static boolean isMIUI() {
try {
final BuildProperties prop = BuildProperties.newInstance();
return prop.getProperty(KEY_MIUI_VERSION_CODE, null) != null
|| prop.getProperty(KEY_MIUI_VERSION_NAME, null) != null
|| prop.getProperty(KEY_MIUI_INTERNAL_STORAGE, null) != null;
} catch (final IOException e) {
return false;
}
}
}
// 檢測Flyme
import android.os.Build;
import java.lang.reflect.Method;
public final class FlymeUtils {
public static boolean isFlyme() {
try {
// Invoke Build.hasSmartBar()
final Method method = Build.class.getMethod("hasSmartBar");
return method != null;
} catch (final Exception e) {
return false;
}
}
}
//引用到的工具類
import android.os.Environment;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Collection;
import java.util.Enumeration;
import java.util.Map.Entry;
import java.util.Properties;
import java.util.Set;
public class BuildProperties {
private final Properties properties;
private BuildProperties() throws IOException {
properties = new Properties();
properties.load(new FileInputStream(new File(Environment.getRootDirectory(), "build.prop")));
}
public boolean containsKey(final Object key) {
return properties.containsKey(key);
}
public boolean containsValue(final Object value) {
return properties.containsValue(value);
}
public Set&
return properties.entrySet();
}
public String getProperty(final String name) {
return properties.getProperty(name);
}
public String getProperty(final String name, final String defaultValue) {
return properties.getProperty(name, defaultValue);
}
public boolean isEmpty() {
return properties.isEmpty();
}
public Enumeration&
public Set&
public int size() {
return properties.size();
}
public Collection&
public static BuildProperties newInstance() throws IOException {
return new BuildProperties();
}
}
這些都是我自己寫的,用在自己的app裡面的。MIUI檢測準確度很高,Flyme 2.0以後應該也沒問題。
然後吐槽一下為什麼要有這兩個東西……MIUI的Apache HC有問題,在OAuth驗證時偶爾失敗,判斷為MIUI時就使用HttpsURLConnection。Flyme則是用來兼容所謂「完全兼容Android Design」的SmartBar的……如何判斷MIUI 小米開發者文檔有講:
如何識別小米設備/MIUI系統
如何檢測小米設備:
請使用android.os.Build對象,查詢MANUFACTURER和MODEL的值,MANUFACTURER值為Xiaomi即為小米設備
如何檢測MIUI V5:
查詢property: ro.miui.ui.version.name ,值是」V5″ 就是MIUI V5系統
SysUtils.java 里的 getSystemProperty 方法可以取到
注意調用次數
我是在搜如何判斷flyme的時候看到這個問題的。。。呵呵
推薦閱讀:
※如何看待 MIUI 的某些流氓行為?
※怎麼看待miui?
※如何評價「小米所有產品都存在嚴重安全漏洞」的觀點?
※如何看待即將發布的MIUI 7?
※現在的小米手機體驗是否越來越差了?