码迷,mamicode.com
首页 > 其他好文 > 详细

对于HDMI设备连接状态的监听

时间:2017-10-16 16:40:15      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:err   and   value   一个   bsp   ring   ice   问题   文件   

对与最近主要做的是电视机盒子端的开发,其中涉及到设备的状态监听比较繁琐,所以对HDMI的连接状态的监听方法做个记录,方便后续查看。

主要通过两种方式:

(1)比较常用的广播监听

注册一个动态广播来获取HDMI接口的插拔,它的Action的name为 “android.intent.action.HDMI_PLUGGED”,具体的代码如下:

private static BroadcastReceiver mReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent receivedIt) {
String action = receivedIt.getAction();
if (action.equals("android.intent.action.HDMI_PLUGGED")) {
boolean state = receivedIt.getBooleanExtra("state", false);
if (state) {
isHdmiConnect = true;
} else {
isHdmiConnect = false;
}
}
}
};

这样可以监听HDMI接口的插拔,但存在一个问题当第一次进入程序的时候是不知道HDMI的状态的需要配合第二种方式。

(2)读取系统文件中的内容

直接读取系统文件中的数据,路径为"/sys/devices/virtual/switch/hdmi/state",其中存在一些设备的存储路径不同需要做出修改具体代码如下:

private static boolean isHdmiSwitchSet() {
// The file ‘/sys/devices/virtual/switch/hdmi/state‘ holds an int -- if it‘s 1 then an HDMI device is connected.
// An alternative file to check is ‘/sys/class/switch/hdmi/state‘ which exists instead on certain devices.
File switchFile = new File("/sys/devices/virtual/switch/hdmi/state");
if (!switchFile.exists()) {
switchFile = new File("/sys/class/switch/hdmi/state");
}
try {
Scanner switchFileScanner = new Scanner(switchFile);
int switchValue = switchFileScanner.nextInt();
switchFileScanner.close();
return switchValue > 0;
} catch (Exception e) {
return false;
}
}

这种方法可以直接获取状态,但如果多次频繁查询可能会出现异常抛出,建议两种方法配合使用最为稳定。

 

对于HDMI设备连接状态的监听

标签:err   and   value   一个   bsp   ring   ice   问题   文件   

原文地址:http://www.cnblogs.com/fuccc/p/7676813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!