Android下强制显示ActionBar的overflowbutton

Posted liguangsunls

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android下强制显示ActionBar的overflowbutton相关的知识,希望对你有一定的参考价值。

因为手机硬件情况的不同,在没有物理Menu键的手机上。ActionBar的overflowbutton会有显示不出来的情况,能够通过反射的方式改动ViewConfiguration类中的sHasPermanentMenuKey静态变量的值永远为false。系统就是依据这个变量值来推断手机有没有物理Menu键,代码例如以下:
@Override  
protected void onCreate(Bundle savedInstanceState) {  
    ……  
    setOverflowShowingAlways();  
}  
private void setOverflowShowingAlways() {  
    try {  
        ViewConfiguration config = ViewConfiguration.get(this);  
        Field menuKeyField = ViewConfiguration.class.getDeclaredField(“sHasPermanentMenuKey”);  
        menuKeyField.setAccessible(true);  
        menuKeyField.setBoolean(config, false);  
    } catch (Exception e) {  
        e.printStackTrace();  
    }  
}  















以上是关于Android下强制显示ActionBar的overflowbutton的主要内容,如果未能解决你的问题,请参考以下文章

Android在横向工具栏内强制ActionBar

解决ActionBar中的item不显示在ActionBar的问题

5) 十分钟学会android--ActionBar知识串烧

Android ActionBar错误的布局方向

安卓studio 怎么设置actionbar显示

android-ActionBar