Actionbar 强制显示溢出菜单

一般的来说在Actionbar中在条目过多时会显示三个竖着的小点的菜单,但在实机测试的时候发现并不显示,上网查找了之后发现问题所在:如果该机器拥有实体的menu键则不在右侧显示溢出菜单,而改为按menu来生成。这样就不利于统一的界面风格。

我们可以改变系统探测实体menu键的存在与否来改变这个的显示。

菜单显示是根据public boolean hasPermanentMenuKey ()这个方法来判断的。这个方法是获取sHasPermanentMenuKey的boolean值。

解决办法:通过在onCreate()中,使用反射改变是否有物理按键的boolean值

try {
ViewConfiguration mconfig = ViewConfiguration.get(this);
       Field menuKeyField = ViewConfiguration.class.getDeclaredField("sHasPermanentMenuKey");
       if(menuKeyField != null) {
           menuKeyField.setAccessible(true);
           menuKeyField.setBoolean(mconfig, false);
       }
   } catch (Exception ex) {
   }

 

转载于:https://www.cnblogs.com/maliu/p/3317694.html

你可能感兴趣的:(Actionbar 强制显示溢出菜单)