对于 3 点图标,您可以在 SDK 中的 ".../android-sdk\platforms\android-19\data\res..." 下找到它,命名为 "ic_menu_moreoverflow_normal_holo_light" 或 "ic_menu_moreoverflow_normal_holo_dark" ,具体取决于您应用的样式。请注意,它在多个文件夹中有多个文件,以便根据按钮的状态和设备的密度正确选择图像。
更新:你也可以找到here(搜索“more”)和here(在“navigation”中,搜索“more_vert”)。
如果你支持 VectorDrawable,我推荐第二个。
更新:目前最新的文件是abc_ic_menu_overflow_material.xml VectorDrawable,内容如下:
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0"
android:tint="?attr/colorControlNormal">
<path
android:pathData="M12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2c-1.1,0 -2,0.9 -2,2S10.9,8 12,8zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2c1.1,0 2,-0.9 2,-2S13.1,10 12,10zM12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2c1.1,0 2,-0.9 2,-2S13.1,16 12,16z"
android:fillColor="@android:color/white"/>
</vector>