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

news/2024/11/20 9:29:13/
方法一:
原理:魅族系统(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
原理:参看笔记 http://note.youdao.com/yws/public/redirect/share?id=190338c584c38b987ce36bf7d102d15d&type=false
/**
* 判断是魅族操作系统
* <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
http://open-wiki.flyme.cn/index.php?title=Flyme%E7%B3%BB%E7%BB%9FAPI

http://www.ppmy.cn/news/727999.html

相关文章

IPV6使用越来越广,您会配置吗?

前面针对IPv6写过一篇文章&#xff0c;但是好多网友反映没有读懂&#xff0c;今天再给大家把内容浓缩一下&#xff0c;教给大家如何配置。 IPV6的推出主要是为了解决地址空间的不足&#xff0c;从而进一步的促进互联网的发展。IPV6地址空间大到惊人&#xff0c;有人比喻地球上…

A Survey on Multimodal Large Language Models

本文是LLM系列的文章之一&#xff0c;主要是讲解多模态的LLM。针对《A Survey on Multimodal Large Language Models》的翻译。 多模态大语言模型的综述 摘要1 引言2 概述3 方法3.1 多模态指令调整3.1.1 引言3.1.2 前言3.1.3 模态对齐3.1.4 数据3.1.5 模态桥接3.1.6 评估 3.2 …

linux安装了中文字体,但是无法加载the font can not be loaded,the path[‘/usr/share/fonts/msyh/微软雅黑.ttf‘] is error

linxu安装了微软雅黑字体&#xff0c;但是代码发布上去之后&#xff0c;运行的时候又说不能加载这个字体&#xff0c; 报错日志&#xff1a;the font can not be loaded&#xff0c;the path[/usr/share/fonts/msyh/微软雅黑.ttf] is error&#xff1b; 想了很多办法&#xf…

ubuntu20.4系统下/usr/share/fonts文件夹内无法复制文件和新建文件

1. 首先点击其他位置&#xff0c;进入计算机。 2. 点击root文件&#xff0c;会提示你输入密码登录&#xff0c;输入密码。 这时就可以对计算机内的文件进行操作。

亲测可用~ Ubuntu20.04 findfont: Font family [‘sans-serif‘] not found. Times New Roman 字体缺失

1-1&#xff1a;question description py在图片上描图的时候出现小方块&#xff0c;找不到正确的字体。比如&#xff1a; findfont: Font family [sans-serif] not found. Falling back to Bitstream Vera Sans Times New Roman1-2&#xff1a;solution 1-2-1&#xff1a;sa…

Ubuntu安装Microsoft Windows Fonts微软字体库

1 微软字体 Ubuntu中的等宽字体还是挺好看的, 但是在windows下用惯了Courier new和微软雅黑等truetype字体, 方方正正的看起来也是很雅致, 但是linux下因为版权的问题, 这些字体不会自动安装,需要我们手动安装 2 安装 ttf-mscorefonts-installer包就是微软的字体包, 可以直接在…

linux fontconfig字体报错问题

系统在运行一些程序时出现了fontconfig error的问题&#xff0c;经排查在python的matplot语句运行时会报这类错&#xff0c;虽然对结果没有什么影响&#xff0c;但这一堆报错不是强迫症看着都难受 于此同时&#xff0c;发现启动gedit时也会报此类错误 网上查找该类错误&#xf…

前端使用外部字体(ttf文件或iconfont)

&#xff08;1&#xff09;使用自定义字体&#xff1a; 将 myFont.ttf 放在 assets\fonts 文件夹下 css 文件中使用&#xff1a; font-face {font-family: myFont;src: url(../assets/fonts/myFont.ttf); }.demo {font-family: myFont; } &#xff08;2&#xff09;使用ico…