学习《第一行代码》使用实机测试所遇问题
Posted 怨灵骑士
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学习《第一行代码》使用实机测试所遇问题相关的知识,希望对你有一定的参考价值。
实机使用酷派大神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) {
}
}
加入此代码后,再测试即可出现菜单选项
以上是关于学习《第一行代码》使用实机测试所遇问题的主要内容,如果未能解决你的问题,请参考以下文章
Android_5_学习《第一行代码》的使用摄像头和相册无法显示图片问题解决