RK平台Android4.4 添加一个新的遥控器支持以及添加特殊按键【转】

本文转载自:http://blog.csdn.net/coding__madman/article/details/52904063

版权声明:本文为博主原创文章,未经博主允许不得转载。

瑞芯微平台

SDK:Android4.4

好久没写博客了,最近工作中需要在SDK中添加一个新的遥控器支持,由于自己对java代码比较头大,过程也是一波三折,整个流程其实分析下来并不难,这里做个简单的总结。也算是学习android的一个开端。

1.  遥控器红外键值到linux层的映射

安卓4.4后linux层和红外层的键值映射是在设备树中修改的,不需要在linux中修改驱动代码,直接在相应的dts文件中修改即可,首先每个遥控器都有一个usercode,按照瑞芯微方面提供的文档:

在终端中输入命令:echo 1 > sys/module/cmcc_pwm_remotectl/parameters/code_print

RK平台Android4.4 添加一个新的遥控器支持以及添加特殊按键【转】

其中USERCODE=0xf601的遥控器用户码,用来标识是哪一个遥控器,RMC_GETDATA=bb,这个是遥控器设备linux驱动中对应的按键上报的对应的键值。

文件目录\kernel\arch\arm\boot\dts\xxx.dts

在代码中先添加如下框架(文件里面照葫芦画瓢)(先把usercode这样加上,然后输入上面的命令才能记录相应按键DTS中对应的值):

RK平台Android4.4 添加一个新的遥控器支持以及添加特殊按键【转】

我这上面是修改好的样子,0xbb和0xbc分别对应的是向上键和确定键。这些都是记录的键值,

<0xbc KEY_REPLY>, 其中0xbc在DTS文件中确定键对应的宏定义 KEY_REPLY这个要在input.h文件中去找

input.h文件路径:kernel\arch\arm\boot\dts\include\dt-bindings\input\input.h

RK平台Android4.4 添加一个新的遥控器支持以及添加特殊按键【转】

DTS文件中每一按键的键值都可以通过打印来记录,每一个键值所对应的宏可以通过linux驱动层中input.h文件中对应的宏找到。名字一定要保持一致!其中上面确定键对应的232是linux层上报android层的键值。

就这样记录所有的按键,然后在DTS文件对号入座,第一步遥控器红外层到linux层的键值映射就搞定了

2. Linux层到android层的键值映射

同样通过终端输入命令:getevent 记录Linux层到android层的键值记录

RK平台Android4.4 添加一个新的遥控器支持以及添加特殊按键【转】

对应的映射文件就是110b0030_pwm.kl 这个是可以在相关配置文件修改确定是哪个KL文件是linux层到android层键值映射,也可以修改为自己创建的KL文件。

RK平台Android4.4 添加一个新的遥控器支持以及添加特殊按键【转】

文件目录:盒子根文件目录下的/system/usr/keylayout/110b0030_pwm.kl文件

这里232是确定键从Linux层上报到android层的键值,其中确定键对应的宏DPAD_CENTER 这个可以在keyevent.java文件中找到

RK平台Android4.4 添加一个新的遥控器支持以及添加特殊按键【转】

一般的遥控器常规按键做到这两步了,基本都没问题了,但是特殊按键的添加还需要继续完善!

RK平台Android4.4 添加一个新的遥控器支持以及添加特殊按键【转】

通常Linux驱动层基本不需要修改,第一步:我们只需要修改对应的KL文件即可。

已遥控器上的搜索按键为例:

由于DTS文件中:

<0xa7 KEY_PROGRAM>  a7是记录的搜索键的键值, 后边对应的宏是input.h文件中可以找到对应的,这个加进去就好了

KL文件中:

key 362   TV_SEARCH    //362是getevent命令记录的搜索键的键值, TV_SEARCH是自定义的宏,这个名字自己可以随便定义。

第二个修改的地方是keycodes.h文件

文件目录:frameworks\native\include\android\keycodes.h

在文件中添加一个没有用到的键值

RK平台Android4.4 添加一个新的遥控器支持以及添加特殊按键【转】

第三个修改的地方是KeycodeLables.h文件

文件目录:\frameworks\native\include\input\KeycodeLables.h

RK平台Android4.4 添加一个新的遥控器支持以及添加特殊按键【转】

第四个修改attrs.xml文件

文件目录:\frameworks\base\core\res\res\values\arrrs.xml

RK平台Android4.4 添加一个新的遥控器支持以及添加特殊按键【转】

第五个修改的文件:KeyEvent.java    (这个文件修改的地方有两个)

RK平台Android4.4 添加一个新的遥控器支持以及添加特殊按键【转】

如果添加的是最后一个别忘了LAST_KEYCODE 这个要和最后一个保持一致.下面还有一个地方也要添加:

RK平台Android4.4 添加一个新的遥控器支持以及添加特殊按键【转】

至此特殊按键搜索按键从红键值外层到android层的键值映射就完成了。搜索按键到android应用层的键值映射就是257.

特殊按键应用层特殊处理可以修改PhoneWindowManager.java文件

文件目录:\frameworks\base\policy\src\com\android\internal\policy\impl\PhoneWindowManager.java

特殊按键处理这次应用层的做法是修改PhoneWindowManager.java文件,同时在上面的目录中添加keyfunction.java文件。

  1. package com.android.internal.policy.impl;
  2. import java.io.IOException;
  3. import java.io.InputStream;
  4. import java.io.FileInputStream;
  5. import java.io.FileNotFoundException;
  6. import java.lang.reflect.Field;
  7. import java.util.ArrayList;
  8. import java.util.List;
  9. import java.util.HashMap;
  10. import java.io.File;
  11. import javax.xml.parsers.DocumentBuilder;
  12. import javax.xml.parsers.DocumentBuilderFactory;
  13. import javax.xml.parsers.ParserConfigurationException;
  14. import org.w3c.dom.Document;
  15. import org.w3c.dom.NodeList;
  16. import org.w3c.dom.Element;
  17. import org.w3c.dom.Node;
  18. import java.io.Serializable;
  19. import org.xml.sax.SAXException;
  20. import android.os.Looper;
  21. import android.content.Context;
  22. import android.content.Intent;
  23. import android.content.IntentFilter;
  24. import android.content.ContextWrapper;
  25. import android.util.Log;
  26. import android.os.Message;
  27. import android.os.Messenger;
  28. import android.os.Bundle;
  29. import android.os.Handler;
  30. import android.os.IBinder;
  31. import android.os.UserHandle;
  32. import android.media.AudioService;
  33. import android.os.RemoteException;
  34. import android.os.ServiceManager;
  35. import android.os.SystemClock;
  36. //import com.hisilicon.android.HiDisplayManager;
  37. //import com.hisilicon.android.DispFmt;
  38. import android.widget.Toast;
  39. import android.view.KeyEvent;
  40. import android.os.SystemProperties;
  41. import android.content.res.Configuration;
  42. import android.app.ActivityManagerNative;
  43. import android.app.ActivityManager;
  44. import android.content.ComponentName;
  45. import android.content.pm.PackageInfo;
  46. //import android.view.VGAToast;
  47. public class Keyfunction {
  48. private static Keyfunction mInstance = null;
  49. private static final String KEYFUNTIONXLMNAME = "/system/etc/keyfunction.xml";
  50. private static final int MSG_TO_SET_FORMAT = 111;
  51. private static Context mContext;
  52. //    private HiDisplayManager mDisplayManager = null;
  53. private ToastUtil toast = null;
  54. private String mProduc_name = null;
  55. private final String TAG = "Keyfunction";
  56. private boolean is4Cpu = true;
  57. private static ArrayList<Integer> settingFormatValueList = new ArrayList<Integer>();
  58. private static ArrayList<String> settingFormatStringList = new ArrayList<String>();
  59. private File avplay;
  60. private int[] threeD_ValueList = {19, 20, 21};
  61. private String[] threeD_StringList = {"1080P 24Hz FramePacking", "720P 60Hz FramePacking", "720P 50Hz FramePacking"};
  62. private int[] fourK_ValueList = {0x100, 0x101, 0x102, 0x103};
  63. private String[] fourK_StringList = {"3840X2160 24Hz", "3840X2160 25Hz", "3840X2160 30Hz", "4096X2160 24Hz"};
  64. private int nCurrentFormat;
  65. private boolean currFmtInSets = false;
  66. private int nCurrentFormatIndex;
  67. private String CurrentFormatIndexString;
  68. private boolean bEventWasHandled = true;
  69. private final long TIME_SPACE = 3000;
  70. private int mScreenCount = 0;
  71. private Keyfunction(Context context) {
  72. Log.e(TAG, "-------->Keyfunction <---------");
  73. showStartMsg = false;
  74. mContext = context;
  75. loadKeyFuntion(mContext);
  76. toast = new ToastUtil();
  77. mProduc_name = SystemProperties.get("ro.product.device");
  78. is4Cpu = mProduc_name.substring(0, 5).equals("Hi379")?true:false;
  79. }
  80. public static class ToastUtil {
  81. private static Handler handler = new Handler(Looper.getMainLooper());
  82. private static Toast toast = null;
  83. private static Object synObj = new Object();
  84. public static void showMessage(final Context act, final String msg) {
  85. showMessage(act, msg, Toast.LENGTH_SHORT);
  86. }
  87. public static void showMessage(final Context act, final int msg) {
  88. showMessage(act, msg, Toast.LENGTH_SHORT);
  89. }
  90. public static void showMessage(final Context act, final String msg,
  91. final int len) {
  92. handler.post(new Runnable() {
  93. @Override
  94. public void run() {
  95. synchronized (synObj) {
  96. if (toast != null) {
  97. // toast.cancel();
  98. toast.setText(msg);
  99. toast.setDuration(len);
  100. } else {
  101. toast = Toast.makeText(act, msg, len);
  102. }
  103. toast.show();
  104. }
  105. }
  106. });
  107. }
  108. public static void showMessage(final Context act, final int msg,
  109. final int len) {
  110. handler.post(new Runnable() {
  111. @Override
  112. public void run() {
  113. synchronized (synObj) {
  114. if (toast != null) {
  115. // toast.cancel();
  116. toast.setText(msg);
  117. toast.setDuration(len);
  118. } else {
  119. toast = Toast.makeText(act, msg, len);
  120. }
  121. toast.show();
  122. }
  123. }
  124. });
  125. }
  126. }
  127. private static Keyfunction keyfunction;
  128. HashMap<String, AppInfoVO> keyFunctionMap = new HashMap<String, Keyfunction.AppInfoVO>();
  129. private final boolean showStartMsg;
  130. public static Keyfunction getInstance(Context context) {
  131. if (keyfunction == null) {
  132. keyfunction = new Keyfunction(context);
  133. }
  134. return keyfunction;
  135. }
  136. static int parseToInt(String number) throws Exception {
  137. int n = -1;
  138. if (number.startsWith("0x") || number.startsWith("0X")) {
  139. n = Integer.parseInt(number.substring(2), 16);
  140. } else {
  141. n = Integer.parseInt(number);
  142. }
  143. return n;
  144. }
  145. static int parseToInt(String number, int def) {
  146. int n = def;
  147. try {
  148. n = parseToInt(number);
  149. } catch (Exception e) {
  150. return def;
  151. }
  152. return n;
  153. }
  154. private HashMap<String, AppInfoVO> loadKeyFuntion(Context mContext) {
  155. File file = null;
  156. file = new File(KEYFUNTIONXLMNAME);
  157. if ((!file.exists()) || (!file.canRead())) {
  158. keyFunctionMap.clear();
  159. return keyFunctionMap;
  160. }
  161. try {
  162. keyFunctionMap.clear();
  163. DocumentBuilderFactory xmlparser = DocumentBuilderFactory.newInstance();
  164. DocumentBuilder xmlDOC;
  165. Document doc = null;
  166. xmlDOC = xmlparser.newDocumentBuilder();
  167. doc = xmlDOC.parse(file);
  168. if (null == doc)
  169. return keyFunctionMap;
  170. NodeList appItems = doc.getElementsByTagName("key");
  171. for (int i = 0; i < appItems.getLength(); i++) {
  172. Node appItem = appItems.item(i);
  173. if (!appItem.hasChildNodes())
  174. continue;
  175. String actionType = ((Element) appItem).getAttribute("actionType");
  176. NodeList appInfoItems = appItem.getChildNodes();
  177. AppInfoVO appInfo = new AppInfoVO();
  178. appInfo.actionType = ((actionType == null || actionType.length() == 0) ? AppInfoVO.ACTION_TYPE_ACTIVITY
  179. : actionType);
  180. for (int j = 0; j < appInfoItems.getLength(); j++) {
  181. Node appInfoItem = appInfoItems.item(j);
  182. String nodeName = appInfoItem.getNodeName();
  183. String nodeTextContent = appInfoItem.getTextContent();
  184. if (nodeName.equalsIgnoreCase("keyName")) {
  185. appInfo.keyName = nodeTextContent;
  186. } else if (nodeName.equalsIgnoreCase("keyValue")) {
  187. appInfo.keyValue = nodeTextContent;
  188. } else if (nodeName.equalsIgnoreCase("packageName")) {
  189. appInfo.packageName = nodeTextContent;
  190. } else if (nodeName.equalsIgnoreCase("activityName")) {
  191. appInfo.activityName = nodeTextContent;
  192. } else if (nodeName.equalsIgnoreCase("serviceName")) {
  193. appInfo.serviceName = nodeTextContent;
  194. } else if (nodeName.equalsIgnoreCase("action")) {
  195. appInfo.action = nodeTextContent;
  196. } else if (nodeName.equalsIgnoreCase("flags")) {
  197. appInfo.flags = parseToInt(nodeTextContent, Intent.FLAG_ACTIVITY_NEW_TASK);
  198. } else if (nodeName.equalsIgnoreCase("method")) {
  199. appInfo.method = parseToInt(nodeTextContent, AppInfoVO.METHOD_FOR_INTERCEPT);
  200. } else if (nodeName.equalsIgnoreCase("extras")) {
  201. if (!appInfoItem.hasChildNodes())
  202. continue;
  203. NodeList appExtraItems = appInfoItem.getChildNodes();
  204. String isBundle = ((Element) appInfoItem).getAttribute("isBundle");
  205. appInfo.isExtarsBundle = (isBundle != null && isBundle.length() > 0 && ("true"
  206. .equalsIgnoreCase(isBundle) || isBundle.charAt(0) == '0'));
  207. appInfo.extras = new HashMap<String, Object>();
  208. for (int k = 0; k < appExtraItems.getLength(); k++) {
  209. Node appExtraItem = appExtraItems.item(k);
  210. if (!(appExtraItem instanceof Element))
  211. continue;
  212. // Log.i(TAG,node.getNodeType());
  213. String type = ((Element) appExtraItem).getAttribute("type");
  214. String name = appExtraItem.getNodeName();
  215. String value = appExtraItem.getTextContent();
  216. parseExtra(appInfo.extras, type, name, value);
  217. }
  218. } else if (nodeName.equalsIgnoreCase("exclude")) {
  219. if (!appInfoItem.hasChildNodes())
  220. continue;
  221. NodeList appExtraItems = appInfoItem.getChildNodes();
  222. appInfo.excludePackage = new ArrayList<String>();
  223. appInfo.excludeActivity = new ArrayList<String>();
  224. for (int k = 0; k < appExtraItems.getLength(); k++) {
  225. Node appExtraItem = appExtraItems.item(k);
  226. if (!(appExtraItem instanceof Element))
  227. continue;
  228. String name = appExtraItem.getNodeName();
  229. String value = appExtraItem.getTextContent();
  230. if (name == null || name.length() == 0 || value == null
  231. || value.length() == 0) {
  232. continue;
  233. }
  234. if ("packageName".equalsIgnoreCase(name)) {
  235. appInfo.excludePackage.add(value);
  236. } else if ("activityName".equalsIgnoreCase(name)) {
  237. appInfo.excludeActivity.add(value);
  238. }
  239. }
  240. }
  241. }
  242. if (appInfo.checkValid()) {
  243. appInfo.generatIntent();
  244. Log.i(TAG, "Got keyfunction :\n" + appInfo);
  245. keyFunctionMap.put(appInfo.keyValue, appInfo);
  246. }
  247. }
  248. } catch (Exception e) {
  249. Log.e(TAG, "loadKeyFuntionn fail:", e);
  250. }
  251. Log.i(TAG, "Got " + keyFunctionMap.size() + " items from the xml file");
  252. return keyFunctionMap;
  253. }
  254. private HashMap<String, Object> parseExtra(HashMap<String, Object> extra, String type,
  255. String name, String value) {
  256. Object v = null;
  257. // Log.i(TAG,"parseExtra s type:" + type + ";" + name + "=" +
  258. // value);
  259. try {
  260. if ("int".equalsIgnoreCase(type)) {
  261. v = Integer.parseInt(value);
  262. } else if ("long".equalsIgnoreCase(type)) {
  263. v = Long.parseLong(value);
  264. } else if ("double".equalsIgnoreCase(type)) {
  265. v = Double.parseDouble(value);
  266. } else if ("float".equalsIgnoreCase(type)) {
  267. v = Float.parseFloat(value);
  268. } else if ("boolean".equalsIgnoreCase(type)) {
  269. v = Boolean.parseBoolean(value);
  270. } else if ("string".equalsIgnoreCase(type) || "".endsWith(type)) {
  271. v = value;
  272. } else {
  273. Log.i(TAG, "parseExtra  unknown type:" + type);
  274. v = null;
  275. }
  276. } catch (Exception e) {
  277. Log.i(TAG, "parseExtra  data error :" + e.getMessage());
  278. v = null;
  279. }
  280. // Log.i(TAG,"parseExtra e type:" + type + ";" + name + "=" +
  281. // (v != null ? v : null));
  282. if (v != null)
  283. extra.put(name, v);
  284. return extra;
  285. }
  286. public AppInfoVO getKeyFunction(int keyValue) {
  287. return keyFunctionMap.get(String.valueOf(keyValue));
  288. }
  289. public AppInfoVO getBeforeUserKeyFunction(int keyValue) {
  290. AppInfoVO app = getKeyFunction(keyValue);
  291. if (app == null)
  292. return null;
  293. if (app.method == AppInfoVO.METHOD_FOR_INTERCEPT
  294. || app.method == AppInfoVO.METHOD_FOR_UNINTERCEPT)
  295. return app;
  296. return null;
  297. }
  298. public AppInfoVO getUserUnhandledKeyFunction(int keyValue) {
  299. AppInfoVO app = getKeyFunction(keyValue);
  300. if (app == null)
  301. return null;
  302. if (app.method == AppInfoVO.METHOD_FOR_AFTER_USER_UNHANDLED)
  303. return app;
  304. return null;
  305. }
  306. public boolean isNeedExcludeOnTopComponent(AppInfoVO app, ComponentName cn) {
  307. boolean exclude = false;
  308. if (cn != null && app != null) {
  309. String pck = cn.getPackageName();
  310. if (pck != null && pck.length() > 0) {
  311. exclude = app.isExclucePackage(pck);
  312. }
  313. String activityName = cn.getClassName();
  314. if (!exclude && activityName != null && activityName.length() > 0) {
  315. if(activityName.equals(app.activityName)){
  316. exclude = true;
  317. Log.w(TAG, "is current app!! no need run keyfun");
  318. }
  319. if (!activityName.contains("."))
  320. activityName = pck + "." + activityName;
  321. if (!exclude)
  322. exclude = app.isExcluceActivity(activityName);
  323. if (!exclude)
  324. exclude = app.isExcluceActivity(pck + "." + cn.getShortClassName());
  325. }
  326. if (exclude) {
  327. Log.w(TAG, "no need run keyfun for:" + cn + " app id:" + app.keyValue + " name:" + app.keyName);
  328. }
  329. }
  330. return exclude;
  331. }
  332. /**
  333. *
  334. * @param app
  335. * @return 是否需要拦截
  336. */
  337. public boolean runKeyFunction(AppInfoVO app) {
  338. boolean needIntercept = false;
  339. boolean succ = false;
  340. if (app == null)
  341. return false;
  342. if (!keyFunctionMap.containsValue(app))
  343. return false;
  344. Log.i(TAG, "runKeyFunction..s app:" + app);
  345. needIntercept = app.method == AppInfoVO.METHOD_FOR_INTERCEPT;
  346. Log.i(TAG, "runKeyFunction..needIntercept=" + needIntercept);
  347. Intent intent = app.getStartIntent();
  348. try {
  349. if (intent != null) {
  350. // intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  351. if (AppInfoVO.ACTION_TYPE_ACTIVITY.equalsIgnoreCase(app.actionType)) {
  352. if (showStartMsg)
  353. ToastUtil.showMessage(mContext, "startActivity for " + app.keyName + ":"
  354. + app.keyValue + "\n" + intent.getComponent());
  355. mContext.startActivity(intent);
  356. succ = true;
  357. } else if (AppInfoVO.ACTION_TYPE_SERVICE.equalsIgnoreCase(app.actionType)) {
  358. if (showStartMsg)
  359. ToastUtil.showMessage(mContext, "startService for " + app.keyName + ":"
  360. + app.keyValue + "\n" + intent.getComponent());
  361. ComponentName t = mContext.startService(intent);
  362. if (t != null)
  363. succ = true;
  364. } else if (AppInfoVO.ACTION_TYPE_BOADCAST.equalsIgnoreCase(app.actionType)) {
  365. if (showStartMsg)
  366. ToastUtil.showMessage(mContext, "sendBroadcast for " + app.keyName + ":"
  367. + app.keyValue + "\n" + intent);
  368. mContext.sendBroadcast(intent);
  369. succ = true;
  370. } else {
  371. Log.e(TAG, "runKeyFunction unknow intent action");
  372. }
  373. }
  374. } catch (Exception e) {
  375. succ = false;
  376. Log.e(TAG, "runKeyFunction fail:", e);
  377. }
  378. Log.i(TAG, "runKeyFunction..e succ=" + succ);
  379. return succ && needIntercept;
  380. }
  381. class AppInfoVO {
  382. public AppInfoVO() {
  383. }
  384. public static final String ACTION_TYPE_ACTIVITY = "activity";
  385. public static final String ACTION_TYPE_SERVICE = "service";
  386. public static final String ACTION_TYPE_BOADCAST = "broadcast";
  387. public static final int METHOD_FOR_INTERCEPT = 0;
  388. public static final int METHOD_FOR_UNINTERCEPT = 1;
  389. public static final int METHOD_FOR_AFTER_USER_UNHANDLED = 2;
  390. public boolean checkStringValid(String s) {
  391. return s != null && s.length() > 0;
  392. }
  393. public boolean checkActivity() {
  394. return ((ACTION_TYPE_ACTIVITY.equalsIgnoreCase(actionType)) && (checkStringValid(action) || (checkStringValid(packageName) && checkStringValid(activityName))));
  395. }
  396. public boolean checkService() {
  397. return ((ACTION_TYPE_SERVICE.equalsIgnoreCase(actionType)) && (checkStringValid(action) || (checkStringValid(packageName) && checkStringValid(activityName))));
  398. }
  399. public boolean checkBroadcast() {
  400. return ((ACTION_TYPE_BOADCAST.equalsIgnoreCase(actionType)) && (checkStringValid(action)));
  401. }
  402. public boolean checkValid() {
  403. boolean succ = checkStringValid(keyValue);
  404. succ = succ && (checkActivity() || checkService() || checkBroadcast());
  405. return succ;
  406. }
  407. public Intent getStartIntent() {
  408. return intent;
  409. }
  410. public boolean isExclucePackage(String pck) {
  411. return excludePackage != null && excludePackage.contains(pck);
  412. }
  413. public boolean isExcluceActivity(String a) {
  414. return excludeActivity != null && excludeActivity.contains(a);
  415. }
  416. private void addIntentExtras(Intent intent, HashMap<String, Object> extra) {
  417. if (extra == null || extra.size() <= 0)
  418. return;
  419. for (String key : extra.keySet()) {
  420. Object value = extra.get(key);
  421. Log.i(TAG, "key=" + key + ";value=" + value);
  422. if (value != null && value instanceof Serializable) {
  423. Log.i(TAG, "add extra:" + key + "=" + value);
  424. intent.putExtra(key, (Serializable) value);
  425. }
  426. }
  427. }
  428. public Intent generatIntent() {
  429. if (intent != null)
  430. return intent;
  431. intent = new Intent();
  432. if (action != null && action.length() > 0) {
  433. intent.setAction(action);
  434. }
  435. intent.addFlags(flags);
  436. if (ACTION_TYPE_ACTIVITY.equalsIgnoreCase(actionType)) {
  437. if (checkStringValid(packageName) && checkStringValid(activityName))
  438. intent.setClassName(packageName, activityName);
  439. } else if (ACTION_TYPE_SERVICE.equalsIgnoreCase(actionType)) {
  440. if (checkStringValid(packageName) && checkStringValid(activityName))
  441. intent.setClassName(packageName, serviceName);
  442. } else if (ACTION_TYPE_BOADCAST.equalsIgnoreCase(actionType)) {
  443. // TODO
  444. }
  445. if (isExtarsBundle) {
  446. // TODO
  447. } else {
  448. addIntentExtras(intent, extras);
  449. }
  450. return intent;
  451. }
  452. @Override
  453. public String toString() {
  454. StringBuilder sb = new StringBuilder();
  455. sb.append("{{keyValue:" + keyValue + "};");
  456. sb.append("{keyName:" + keyName + "};");
  457. sb.append("{actionType:" + actionType + "};");
  458. sb.append("{flags:0x" + Integer.toHexString(flags) + "};");
  459. sb.append("{method:" + method + "};");
  460. sb.append("{action:" + action + "};");
  461. sb.append("{packageName:" + packageName + "};");
  462. sb.append("{activityName:" + activityName + "};");
  463. sb.append("{serviceName:" + serviceName + "};");
  464. sb.append("{extras:" + extras + "};");
  465. sb.append("{excludePackage:" + excludePackage + "};");
  466. sb.append("{excludeActivity:" + excludeActivity + "};");
  467. sb.append("{intent:" + intent + "}}");
  468. return sb.toString();
  469. }
  470. public String actionType = ACTION_TYPE_ACTIVITY;// TODO
  471. public int flags = Intent.FLAG_ACTIVITY_NEW_TASK;
  472. public int method = METHOD_FOR_INTERCEPT;
  473. public boolean isExtarsBundle = false;
  474. public String keyValue;
  475. public String keyName;
  476. public String packageName;
  477. public String action;
  478. public String activityName;
  479. public String serviceName;
  480. public HashMap<String, Object> extras;
  481. public ArrayList<String> excludePackage;
  482. public ArrayList<String> excludeActivity;
  483. public Intent intent;
  484. }
  485. public void readSwitch() {
  486. }
  487. private Handler FMThandler = new Handler() {
  488. public void handleMessage(Message msg) {
  489. int i = 0;
  490. switch (msg.what) {
  491. case MSG_TO_SET_FORMAT:
  492. Log.e(TAG, "receive MSG_TO_SET_FORMAT msg");
  493. for (i = 0; i < settingFormatValueList.size(); i++) {
  494. if (settingFormatValueList.get(i) == nCurrentFormat) {
  495. break;
  496. }
  497. }
  498. Log.e(TAG, "nCurrentFormatIndex: "+nCurrentFormatIndex);
  499. Log.e(TAG, "settingFormatValueList.get(nCurrentFormatIndex): "+settingFormatValueList.get(nCurrentFormatIndex));
  500. if(nCurrentFormatIndex != i)
  501. {
  502. //                    mDisplayManager.setFmt(settingFormatValueList.get(nCurrentFormatIndex));
  503. //                    mDisplayManager.SaveParam();
  504. //                    mDisplayManager.setOptimalFormatEnable(0);
  505. Intent in = new Intent("com.hisilicon.intent.action.ACTION_FORMAT_CHANGED");
  506. mContext.sendBroadcastAsUser(in, UserHandle.ALL);
  507. }
  508. bEventWasHandled = true;
  509. break;
  510. case 1:
  511. }
  512. super.handleMessage(msg);
  513. }
  514. };
  515. public void keyToResolution() {
  516. //  mDisplayManager = new HiDisplayManager();
  517. FMThandler.removeMessages(1);
  518. Message message = new Message();
  519. message.what = 1;
  520. FMThandler.sendMessage(message);
  521. }
  522. public void keySwitchFormat() {
  523. FMThandler.removeMessages(MSG_TO_SET_FORMAT);
  524. //        mDisplayManager = new HiDisplayManager();
  525. Message message = new Message();
  526. //        nCurrentFormat = mDisplayManager.getFmt();
  527. getDisplayFormatList();
  528. int i;
  529. Log.e(TAG, "current format is: "+nCurrentFormat);
  530. Log.e(TAG, "bEventWasHandled is: "+bEventWasHandled);
  531. if(bEventWasHandled)
  532. {
  533. for (i = 0; i < settingFormatValueList.size(); i++)
  534. {
  535. if (settingFormatValueList.get(i) == nCurrentFormat)
  536. {
  537. nCurrentFormatIndex = i;
  538. currFmtInSets = true;
  539. break;
  540. }
  541. else
  542. {
  543. currFmtInSets = false;
  544. nCurrentFormatIndex = 0;
  545. }
  546. }
  547. }
  548. else
  549. {
  550. currFmtInSets = true;
  551. nCurrentFormatIndex = (nCurrentFormatIndex + 1)%settingFormatValueList.size();
  552. }
  553. Log.e(TAG, "currFmtInSets is: "+currFmtInSets);
  554. Log.e(TAG, "nCurrentFormatIndex is: "+nCurrentFormatIndex);
  555. if(currFmtInSets)
  556. {
  557. bEventWasHandled = false;
  558. CurrentFormatIndexString = settingFormatStringList.get(nCurrentFormatIndex);
  559. toast.showMessage(mContext, CurrentFormatIndexString, Toast.LENGTH_LONG);
  560. message.what = MSG_TO_SET_FORMAT;
  561. FMThandler.sendMessageDelayed(message, TIME_SPACE);
  562. }
  563. else
  564. {
  565. //3d format case
  566. for (i = 0; i < threeD_ValueList.length; i++)
  567. {
  568. if (threeD_ValueList[i] == nCurrentFormat)
  569. {
  570. Log.e(TAG, "3d format case");
  571. toast.showMessage(mContext, threeD_StringList[i], Toast.LENGTH_SHORT);
  572. avplay = new File("/proc/msp/avplay00");
  573. if (!avplay.exists()) {
  574. Log.e(TAG, "no active avplay");
  575. //switch format
  576. message.what = MSG_TO_SET_FORMAT;
  577. FMThandler.sendMessageDelayed(message, TIME_SPACE);
  578. }
  579. return;
  580. }
  581. }
  582. //4k format case
  583. for (i = 0; i < fourK_ValueList.length; i++)
  584. {
  585. if (fourK_ValueList[i] == nCurrentFormat)
  586. {
  587. Log.e(TAG, "4k format case");
  588. toast.showMessage(mContext, fourK_StringList[i], Toast.LENGTH_SHORT);
  589. //switch format
  590. message.what = MSG_TO_SET_FORMAT;
  591. FMThandler.sendMessageDelayed(message, TIME_SPACE);
  592. return;
  593. }
  594. }
  595. }
  596. }
  597. public void getDisplayFormatList()
  598. {
  599. }
  600. }

同时在盒子根目录下的/system/etc目录下添加keyfunction.xml配置文件。

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Applications>
  3. <!-- <key>
  4. <keyName>VOD_SEARCH</keyName>
  5. <keyValue>84</keyValue>
  6. <packageName>com.ipanel.portal</packageName>
  7. <activityName>com.ipanel.portal.IPanel30PortalActivity</activityName>
  8. <action>android.intent.action.MAIN</action>
  9. <method>0</method>
  10. <flags>0x14008000</flags>
  11. <extras>
  12. <url type="string">http://vod.fjgdwl.com:80/gldb/NEW_UI/search/search_2.htm</url>
  13. </extras>
  14. <exclude>
  15. <packageName>com.ipanel.join.live.fj</packageName>
  16. <activityName>com.ipanel.portal.IPanel30PortalActivity</activityName>
  17. </exclude>
  18. </key>
  19. <key>
  20. <keyName>Huikan</keyName>
  21. <keyValue>67</keyValue>
  22. <packageName>com.ipanel.portal</packageName>
  23. <activityName>com.ipanel.portal.IPanel30PortalActivity</activityName>
  24. <action>android.intent.action.MAIN</action>
  25. <method>1</method>
  26. <flags>0x14008000</flags>
  27. <exclude>
  28. <packageName>com.ipanel.portal</packageName>
  29. </exclude>
  30. <extras>
  31. <url type="string">http://vod.fjgdwl.com:80/gldb/NEW_UI/lookBack/list.htm?typePos=0</url>
  32. </extras>
  33. </key>
  34. -->
  35. <key>
  36. <keyName>>Huikan</keyName>
  37. <keyValue>275</keyValue>
  38. <packageName>com.ipanel.join.vod.fj</packageName>
  39. <activityName>com.ipanel.join.vod.ui.BTVChannelListActivity</activityName>
  40. <action>android.intent.action.MAIN</action>
  41. <method>0</method>
  42. <flags>0x14008000 </flags>
  43. </key>
  44. <key>
  45. <keyName>SEARCH</keyName>
  46. <keyValue>257</keyValue>
  47. <packageName>com.ipanel.join.vod.fj</packageName>
  48. <activityName>com.ipanel.join.vod.fj.SearchActionActivity</activityName>
  49. <action>android.intent.action.MAIN</action>
  50. <method>0</method>
  51. <flags>0x14008000 </flags>
  52. <exclude>
  53. <packageName>com.ipanel.join.live.fj</packageName>
  54. </exclude>
  55. </key>
  56. <key>
  57. <keyName>HD</keyName>
  58. <keyValue>170</keyValue>
  59. <packageName>com.ipanel.join.live.fj</packageName>
  60. <activityName>com.jiangxi.apps.nclive.LiveActivity</activityName>
  61. <action>android.intent.action.MAIN</action>
  62. <flags>0x10200000</flags>
  63. <extras>
  64. <bouquet type="string">815</bouquet>
  65. <live_show_epg type="boolean">true</live_show_epg>
  66. </extras>
  67. </key>
  68. <key>
  69. <keyName>Love</keyName>
  70. <keyValue>256</keyValue>
  71. <packageName>com.ipanel.join.live.fj</packageName>
  72. <activityName>com.jiangxi.apps.nclive.LiveActivity</activityName>
  73. <action>android.intent.action.MAIN</action>
  74. <flags>0x10200000</flags>
  75. <extras>
  76. <bouquet type="string">2147483627</bouquet>
  77. <live_show_epg type="boolean">true</live_show_epg>
  78. </extras>
  79. </key>
  80. <key>
  81. <keyName>Settings</keyName>
  82. <keyValue>176</keyValue>
  83. <packageName>com.ipanel.join.cq.settings</packageName>
  84. <activityName>com.ipanel.join.cq.settings.SettingActivity</activityName>
  85. <action>android.intent.action.MAIN</action>
  86. </key>
  87. <key>
  88. <keyName>Email</keyName>
  89. <keyValue>65</keyValue>
  90. <packageName>com.ipanel.join.cq.settings</packageName>
  91. <activityName>com.ipanel.join.cq.settings.activity.MailListActivity</activityName>
  92. <action>android.intent.action.MAIN</action>
  93. </key>
  94. <key>
  95. <keyName>HiPQSetting</keyName>
  96. <keyValue>1185</keyValue>
  97. <packageName>com.hisilicon.android.pqsetting</packageName>
  98. <serviceName>com.hisilicon.android.pqsetting.MainService</serviceName>
  99. <action>android.intent.action.MAIN</action>
  100. </key>
  101. </Applications>

至此搜索按键从红外层到应用层的映射一直到安卓应用层的处理就全部完毕。这里搜索按键是跳到特殊的APP应用界面。

上一篇:【转】windows7的桌面右键菜单的“新建”子菜单,在注册表哪个位置,如何在“新建"里面添加一个新项


下一篇:PHP面向对象基础知识总结