让imageview出现在Gallery上方

发布于 2024-08-18 15:11:09 字数 1057 浏览 4 评论 0原文

我有一个图库小部件和 2 个图像视图,一个位于屏幕左侧,一个位于屏幕右侧。我希望 imageview 和 gallery 保持在同一条线上,但如果存在重叠,imageview 的 z-index 应该高于 gallery 的 z-index。

问题是图像视图出现在图库项目下方。我查看了 android 文档,但找不到解决方案。我的 XML 文件如下(由于某种原因,开始根相对布局的开始和结束标记未显示):

<ImageView
    android:id="@+id/greenarrow_right"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/green_arrow_right"
    android:layout_alignParentRight="true"
    android:layout_marginRight="10dip"
    android:layout_marginTop="10dip"
/>  

<ImageView
    android:id="@+id/greenarrow_left"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/green_arrow_left"
    android:layout_alignParentLeft="true"
    android:layout_marginLeft="10dip"
    android:layout_marginTop="10dip"
/>  
<Gallery 
    android:id="@+id/gallery"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:spacing="3dip"         
/>

  <!-- more elements here -->

I have a Gallery widget and 2 imageviews, one on the left of the screen and one on the right. I want the imageview and gallery to stay on the same line, but if there is an overlap, the imageview's z-index should be higher then the gallery's.

The problem is the imageview appears underneath the gallery item. I've had a look in the android doc, but can't find the solution. My XML file is below (For some reason, the opening Root relative layout's opening and closing tag isn't showing up):

<ImageView
    android:id="@+id/greenarrow_right"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/green_arrow_right"
    android:layout_alignParentRight="true"
    android:layout_marginRight="10dip"
    android:layout_marginTop="10dip"
/>  

<ImageView
    android:id="@+id/greenarrow_left"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/green_arrow_left"
    android:layout_alignParentLeft="true"
    android:layout_marginLeft="10dip"
    android:layout_marginTop="10dip"
/>  
<Gallery 
    android:id="@+id/gallery"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:spacing="3dip"         
/>

  <!-- more elements here -->

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

生生漫 2024-08-25 15:11:09

RelativeLayout 的最后一个子级将位于顶部。如果您的布局如上所示,则意味着 Gallery 将位于第二个 ImageView 之上。更改 XML 和 RelativeLayout 规则,使第二个 ImageView 出现在 XML 中的 Gallery 之后。

The last child of the RelativeLayout will be on top. If your layout is as depicted above, that means the Gallery will be on top of the second ImageView. Change your XML and the RelativeLayout rules to make the second ImageView appear after the Gallery in the XML.

浅唱ヾ落雨殇 2024-08-25 15:11:09

您尝试过 ViewParent.BringChildToFront(myImageView) 吗?

Did you try ViewParent.BringChildToFront(myImageView) ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文