当前位置: 首页 > 工具软件 > FlymeOS > 使用案例 >

判断是为魅族系统(Flyme OS)

太叔繁
2023-12-01
方法一:
原理:魅族系统(Flyme)5.1可以通过是否有hasSmartBar进行判断。
/**
* 判断是否为魅族系统 (注意:此方法对于最新的Flyme(基于Android 5.1)无效.)
* <h3>Version</h3> 1.0
* <h3>CreateTime</h3> 2016/6/8,17:06
* <h3>UpdateTime</h3> 2016/6/8,17:06
* <h3>CreateAuthor</h3>
* <h3>UpdateAuthor</h3>
* <h3>UpdateInfo</h3> (此处输入修改内容,若无修改可不写.)
*
* @return true 为魅族系统 否则不是
*/
public static boolean isFlyme() {
try {
final Method method = Build.class.getMethod("hasSmartBar");
return method != null;
} catch (final Exception e) {
return false;
}
}
/**
* 获取魅族系统SmartBar的高度,
* <h3>Version</h3> 1.0
* <h3>CreateTime</h3> 2016/6/8,17:07
* <h3>UpdateTime</h3> 2016/6/8,17:07
* <h3>CreateAuthor</h3>
* <h3>UpdateAuthor</h3>
* <h3>UpdateInfo</h3> (此处输入修改内容,若无修改可不写.)
*
* @param context
* @param actionbar
* @return
*/
public static int getSmartBarHeight(Context context, ActionBar actionbar) {
if (actionbar != null)
try {
Class c = Class.forName("com.android.internal.R$dimen");
Object obj = c.newInstance();
Field field = c.getField("mz_action_button_min_height");
int height = Integer.parseInt(field.get(obj).toString());
return context.getResources().getDimensionPixelSize(height);
} catch (Exception e) {
e.printStackTrace();

actionbar.getHeight();
}
return 0;
}
注意:此方法只适合Fyme 5.1之前的版本。
方法二:也可以判断Fyme 5.1
/**
* 判断是魅族操作系统
* <h3>Version</h3> 1.0
* <h3>CreateTime</h3> 2016/6/18,9:43
* <h3>UpdateTime</h3> 2016/6/18,9:43
* <h3>CreateAuthor</h3> vera
* <h3>UpdateAuthor</h3>
* <h3>UpdateInfo</h3> (此处输入修改内容,若无修改可不写.)
* @return true 为魅族系统 否则不是
*/
public static boolean isMeizuFlymeOS() {
/* 获取魅族系统操作版本标识*/
String meizuFlymeOSFlag = getSystemProperty("ro.build.display.id","");
if (TextUtils.isEmpty(meizuFlymeOSFlag)){
return false;
}else if (meizuFlymeOSFlag.contains("flyme") || meizuFlymeOSFlag.toLowerCase().contains("flyme")){
return true;
}else {
return false;
}
}


/**
* 获取系统属性
* <h3>Version</h3> 1.0
* <h3>CreateTime</h3> 2016/6/18,9:35
* <h3>UpdateTime</h3> 2016/6/18,9:35
* <h3>CreateAuthor</h3> vera
* <h3>UpdateAuthor</h3>
* <h3>UpdateInfo</h3> (此处输入修改内容,若无修改可不写.)
* @param key ro.build.display.id
* @param defaultValue 默认值
* @return 系统操作版本标识
*/
private static String getSystemProperty(String key, String defaultValue) {
try {
Class<?> clz = Class.forName("android.os.SystemProperties");
Method get = clz.getMethod("get", String.class, String.class);
return (String)get.invoke(clz, key, defaultValue);
} catch (ClassNotFoundException e) {
LogUtil.logErrorMessage("SystemUtil=================>"+e.getMessage());
return null;
} catch (NoSuchMethodException e) {
LogUtil.logErrorMessage("SystemUtil=================>"+e.getMessage());
return null;
} catch (IllegalAccessException e) {
LogUtil.logErrorMessage("SystemUtil=================>"+e.getMessage());
return null;
} catch (IllegalArgumentException e) {
LogUtil.logErrorMessage("SystemUtil=================>"+e.getMessage());
return null;
} catch (InvocationTargetException e) {
LogUtil.logErrorMessage("SystemUtil=================>"+e.getMessage());
return null;
}
}
其他Flyme属性设置参考魅族官网 Flyme API
 类似资料: