如何在Activity中添加浮动视图
我构建了一个包含一些图标的侧栏菜单,当单击其中一个图标时,我需要在栏旁边弹出一个视图,其中包含一个视图。
我的问题是如何将此视图添加到不在栏中的任何视图之上。
为了澄清起见,这是我在屏幕上显示侧边栏的布局。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView android:id="@+id/image01" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:scaleType="fitXY" />
<com.view.SideBarView android:id="@+id/sideBar"
android:layout_width="40px" android:layout_height="match_parent"
layout_toLeftOf="@id/image01" />
</RelativeLayout>
我需要当单击栏上的图标时弹出左侧的图像,并且在气球内还有一个视图并获取一些用户输入。
如果不是太多,我需要在该浮动视图的图标旁边绘制一个箭头。
有办法做到这一点吗?
I build a SideBar menu that contains some icons, when clicking on one of them, I need to popover a view next to the bar with a View inside of it.
My question is how add this view in top of any view that is not in the bar.
Just for clarify, this is my layout to get the SideBar on screen.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView android:id="@+id/image01" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:scaleType="fitXY" />
<com.view.SideBarView android:id="@+id/sideBar"
android:layout_width="40px" android:layout_height="match_parent"
layout_toLeftOf="@id/image01" />
</RelativeLayout>
I need when click a icon on the bar to pop over the image on the left, and also have a View inside the balloon and get some user input.
If it's not too much, I need to draw a arrow next to the icon to this floating view.
There's an way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
搜索后我发现如何做到这一点,我可以使用 AbsoluteLayout 来做到这一点(但我不喜欢它),所以我发现了我的第二个选择,使用 PopupWindow 将我的内容显示为浮动视图。
这非常有效。
After searching I discovery how do that, I can do it with AbsoluteLayout (but I don't like it), so I discover my second option, use a PopupWindow to show my Content as a floating view.
This works perfectly.
@Marcos如果您正在寻找的是浮动视图,您可以使用RelativeLayout,FrameLayout或AbsoluteLayout,如本帖子中所述“在 Android 中创建浮动视图”。
@Marcos If all you're looking is Floating Views you may use RelativeLayout , FrameLayout or AbsoluteLayout as described in this post "Creating Floating Views in Android".