向Appcompat操作栏弹出菜单添加边距

时间:2015-09-17 07:33:52

标签: android android-actionbar android-support-library android-appcompat android-support-design

我正在使用appcompat操作栏。我想在右上角打开的溢出菜单中添加上边距。因此,增加它上面的间距,如下图所示。现在,下拉菜单打开了3个点。我怎么能把它推下来?

谢谢。

enter image description here

2 个答案:

答案 0 :(得分:0)

如果你指的是Activity的默认OptionItem菜单,我想你不能以编程方式进行,因为API只是让你给它充气,从而添加/删除元素。间距应该很好,因为菜单在各种布局中都是标准化的。

你有什么间距问题?你能添加一个你想要的结果的截图吗?

可能的解决方案,不是太脏,将使用自定义样式:

<style name="AppTheme" parent="AppBaseTheme">
  <item name="android:actionButtonStyle">@style/MyStyle</item>
</style>

<style name="MyStyle" parent="AppBaseTheme">
   <item name="android:minWidth">XXdip</item>
   <item name="android:padding">XXdip</item>
</style>

答案 1 :(得分:0)

您可以使用工具栏而不是ActionBar

&#13;
&#13;
<android.support.v7.widget.Toolbar 
     android:id="@id/toolbar"
     android:background="@color/color_notification_toolbar"
     android:layout_width="fill_parent"
     android:layout_height="@dimen/abc_action_bar_default_height_material">

    <TextView
          android:textSize="@dimen/abc_text_size_title_material_toolbar"
          android:textStyle="bold"
          android:textColor="@color/color_notification_title"
          android:layout_gravity="center"
          android:id="@id/tvTimeLineTitle" android:layout_width="wrap_content"
          android:layout_height="wrap_content" android:text="@string/title" />
  
  /* add your menu items here as simple text views and 
    and give as much margins and paddings as you want  */
  
</android.support.v7.widget.Toolbar>
&#13;
&#13;
&#13;