What#39;s the name of the little widget with three dots inside a cardview in android?(android中cardview中带有三个点的小部件的名称是什么?)
问题描述
三个点的小部件是什么?如何将其添加到我的应用中?
这根本不是一个小部件.它是一个 ImageButton
(样式无边界),使用包含 PopupMenu
有关文档教程,请访问
What's the little widget with three dots? How can I add it to my app?
This is not a widget at all. It is an ImageButton
(borderless in style) using the overflow Icon that includes a PopupMenu
For documentation tutorial visits http://developer.android.com/guide/topics/ui/menus.html#PopupMenu
This refers to a nice code snippet from the link above:
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="QGRyYXdhYmxlL2ljX292ZXJmbG93X2hvbG9fZGFyaw=="
android:contentDescription="@string/descr_overflow_button"
android:onClick="showPopup" />
Then use to show popup:
public void showPopup(View v) {
PopupMenu popup = new PopupMenu(this, v);
MenuInflater inflater = popup.getMenuInflater();
inflater.inflate(R.menu.actions, popup.getMenu());
popup.show();
}
3-Dots button is available among Assets in Android Studio:
Right click on res
-> New -> Vector Assets -> Asset Type = Clip Art
-> Click on the button next to Clip Art: label -> Search for more vert
这篇关于android中cardview中带有三个点的小部件的名称是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:android中cardview中带有三个点的小部件的名称是什么?
- 网上有没有好的 UIScrollView 教程? 2022-01-01
- GPS状态的广播接收器? 2022-01-01
- UITextView 内容插图 2022-01-01
- URL编码Swift iOS 2022-01-01
- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01
- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01
- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01