Android - 弹出控制器与 ipad 相同
这是 ipad 的弹出控制器。
知道我们如何在 Android 中创建相同类型的东西吗?实际上我想显示 html 文件或使用 URL 加载 webview。
Here is a popover controller of the ipad.
Any idea on how do we create the same kind of thing in Android? Actually i want to display html file or load webview with URL.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用半透明的自定义对话框(公共类 MenuDialog 扩展 Dialog)来实现此目的(在背景颜色中使用 alpha 值,例如 #88000000)。将其内容视图设置为您喜欢的任何 XML 布局,如果需要,还可以包含
WebView
。在构造函数中,您可能可以添加以下内容:
You can achieve this using a custom dialog (public class MenuDialog extends Dialog) that is semi-transparent (use alpha value in your bg color like #88000000). Set its content view to any XML layout you like, include a
WebView
if you want.And in the constructor, you probably could put something like:
您可以使用此 3D QuickAction
这是一个开源项目。您可以在这里获取:http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/" rel="noreferrer">http://www.londatiga.net londatiga.net/it/how-to-create-quickaction-dialog-in-android/
You can use this 3D QuickAction
This is an open source project. You can get it here: http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/