带有下拉列表的 android 按钮小部件,这个特定小部件的名称是什么?
我正在学习android布局,我注意到一些android应用程序中有一个特定的按钮小部件,我想将其添加到我自己的应用程序中,我只是不完全确定它叫什么,在某些情况下,这个按钮小部件甚至会包含一个下拉列表,这里是我正在谈论的几个例子。
在第一张图片中,您会注意到复选标记、相机和铅笔都位于我想要的按钮小部件内,在 YouTube 应用程序中,您会注意到竖起大拇指、竖起大拇指和更多按钮
Im learning android layouts and Ive noticed a particular button widget in some android apps that I would like to add to my own apps, Im just not entirely sure what its called, In some cases this button widget even will include a dropdown list here are a few examples of what Im talking about.
in the first image you will notice that the checkmark, the camera and the pencil are all sitting inside of the button widget i'm after, and in the youtube app you will notice the thumbs up, thumbs down and more buttons
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是操作栏。对 3.0+ 设备的本机支持,以及 3.0 之前的设备中需要做的一些工作。您可以在新的 api 14 示例(称为“ActionBarCompat”)中找到示例。
That's ActionBar. Native support for 3.0+ devices, and some work to do in pre 3.0-devices. You can find example in new api 14 samples(called "ActionBarCompat").
请此处查看我的答案提供了一些关于如何实现“仪表板”模式和使用“快速操作”栏的好链接。我认为这应该让你走上正确的道路。还有一个关于如何实现“操作栏”的链接。
编辑:根据 Mighter 的说法,如果您使用 API 1.6 - 2.3,现在应该有官方的 Google 示例。请参阅此。
Please see my answer here which gives some good links on how to implement the "dashboard" pattern, and use the "quickaction" bar. I think this should put you on the right path. Also there is a link on how to implement the "action bar."
EDIT: According to Mighter, if you use API 1.6 - 2.3 there should be official Google samples for this now. Please see this.