Android系统可绘制ic_btn_round_more
有没有办法访问android系统私有drawable:ic_btn_round_more?
这是使用的更多图标 在DialogPreference(res.layout.preference_dialog.xml)中 它无法通过 android.R.drawable 访问
我不想复制位图文件,因为 每个设备的该图标可能不同。 我发现了这个: http://www.androidjavadoc.com/2.3/android /R.attr.html#moreIcon 但我不知道如何使用它。基本上我正在尝试向我的自定义 ListView 添加更多图标, 这看起来和安卓完全一样。
is there some way how to access android system private drawable: ic_btn_round_more?
This is the more icon which is used
in DialogPreference (res.layout.preference_dialog.xml)
It's not accessible through android.R.drawable
I don't want to copy bitmap file, because
that icon can be different for every device.
I found this: http://www.androidjavadoc.com/2.3/android/R.attr.html#moreIcon But I'm not sure how can I use it. Basically I'm trying to add more icon to my custom ListView,
which whould look exactly android way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Nine-patch 创建自己的圆形按钮,该按钮与可绘制的 ic_btn_round_more 完全相同。您可以在此处获取有关如何使用九补丁的更多信息:http://developer .android.com/guide/developing/tools/draw9patch.html
You can use Nine-patch to create your own rounded button which can be exactly the same as drawable ic_btn_round_more. you can get more information about how to use Nine-Patch here : http://developer.android.com/guide/developing/tools/draw9patch.html