如何在Android中更改3点溢出按钮的大小?

时间:2016-12-05 12:15:21

标签: java android user-interface

我更改了默认android 3点溢出按钮的图标。但它正在寻找"拉伸"。如何将其大小更改为固定值? 这就是它现在的样子 enter image description here

这就是我改变图标的​​方式:

<?xml version="1.0" encoding="utf-8"?>

<style name="MaterialActionBar" parent="@style/Theme.Sherlock">
  <item name="android:actionOverflowButtonStyle">@style/MaterialOverFlow</item>

</style>

<style name="MaterialOverFlow" parent="@android:style/Widget.Holo.ActionButton.Overflow">
    <item name="android:src">@drawable/icon_overflow</item>
    <item name="android:background">@drawable/material_overflow_button_background</item>

</style>

知道了!最后将我的按钮从svg转换为xml并为其设置固定大小,现在一切都很好看)

0 个答案:

没有答案