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

学习《第一行代码》使用实机测试所遇问题(二)

时间:2017-05-05 00:51:26      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:except   create   酷派   exception   key   msu   har   get   java   

实机使用酷派大神F1,添加menu后,右上角不出现菜单,此时在java代码中加入以下方法在onCreate中运行

private void makeActionOverflowMenuShown() {
//devices with hardware menu button (e.g. Samsung Note) don‘t show action overflow menu
try {
ViewConfiguration config = ViewConfiguration.get(this);
Field menuKeyField = ViewConfiguration.class.getDeclaredField("sHasPermanentMenuKey");
if (menuKeyField != null) {
menuKeyField.setAccessible(true);
menuKeyField.setBoolean(config, false);
}
} catch (Exception e) {

}
}


加入此代码后,再测试即可出现菜单选项

学习《第一行代码》使用实机测试所遇问题(二)

标签:except   create   酷派   exception   key   msu   har   get   java   

原文地址:http://www.cnblogs.com/ylqs/p/6624112.html

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