Android 的指令布局
我正在考虑在我的一个应用程序之上放置一些说明,就像 SoundHound 在其最新更新之一中所做的那样: https://i.sstatic.net/rziRo.png
这样的事情是如何实现的?这是某种布局之上的另一种布局吗?或者某种意义上的“对话框”?
I was looking into laying out some instructions on top of one of my applications like SoundHound does in one of their latest updates: https://i.sstatic.net/rziRo.png
How is something like this achieved? Is this some sort of layout over another layout? Or a "dialog box" in a way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建具有两个子项的框架布局。第一个是活动的标准布局。第二个将包含在适当位置显示帮助气泡的图像视图。
有关详细信息,请参阅:http://developer.android.com /guide/topics/ui/layout-objects.html#framelayout
这是一个很好的简单示例:http://www.learn-android.com/2010/ 01/05/android-layout-tutorial/3/
You can create a frame layout with two children. The first would be the standard layout for the activity. The second would contain image views that display the help bubbles in the appropriate locations.
For more information see this: http://developer.android.com/guide/topics/ui/layout-objects.html#framelayout
Here is nice simple example: http://www.learn-android.com/2010/01/05/android-layout-tutorial/3/
您可以将 RelativeLayout 与某些元素一起使用具有负利润。它们将与其他元素重叠。
You could just use a RelativeLayout with some elements having negative margins. They will overlap over other elements.