我有一个
删除按钮,我想将其作为废纸篓图标.与按住快捷键时出现的主屏幕
底部的类似.
是否可以重用Android系统图标,还是我必须自己绘制?
对的,这是可能的.查看此
页面:
http://androiddrawableexplorer.appspot.com/获取所有可用图标的列表.顶部有一个
用法示例,但如果您在menu.xml
文件中执行此操作,请使用一些看起来像这样的
代码
<item android:id="@+id/end"
android:title="@string/end_label"
android:alphabeticShortcut="@string/end_shortcut"
android:icon = "@android:drawable/ic_menu_close_clear_cancel" />
原文链接:https://www.f2er.com/android/313863.html