android 4.0为系统增加虚拟导航栏

来源:互联网 发布:nginx ip映射域名访问 编辑:程序博客网 时间:2024/06/05 23:07

android 4.0新增加了导航栏,就是back,home,recent几个虚拟按键,但是默认编译的系统可能会disable掉它,最后找到打开它的方法:

 

在文件android/framework/base/core/res/res/values/config.xml

    <!-- Whether a software navigation bar should be shown. NOTE: in the future this may be         autodetected from the Configuration. -->    <bool name="config_showNavigationBar">false</bool>
false改成true即可
原创粉丝点击