什么控制视图在 UI 屏幕上显示的顺序?

发布于 2024-10-04 03:00:06 字数 2492 浏览 2 评论 0原文

我有一个应用程序,其布局使用以下视图对象。 2 个微调器、2 个按钮、1 个搜索栏和一个自定义视图对象,该对象基本上是我绘制的画布。

由于某种原因,微调器和搜索栏绘制在画布顶部,但 2 个按钮却没有绘制。我很困惑这是为什么。

那么,这个顺序是如何确定的呢?

谢谢。

编辑:根据请求的 XML(这是在我将自定义视图移动到顶部以解决问题之前)。如果订单应该是基于 XML 的,那么自定义视图应该覆盖旋转器,但它没有覆盖。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <Spinner
        android:id="@+id/cc_component"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:drawSelectorOnTop="true"
        android:prompt="@string/cc_component_spinner" />

    <TextView
        android:id="@+id/desc"
        android:text="@string/step1_desc"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="10dip"
        android:visibility="gone"
        android:layout_centerHorizontal="true"
        android:textSize="25sp"/>

    <Button
        android:id="@+id/switch_left"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"/>

    <com.cmllc.zcc.CCView
        android:id="@+id/cc"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <Button
        android:id="@+id/switch_right"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:background="@drawable/rightarrow1" /> 

    <Spinner
        android:id="@+id/component_color"
        android:layout_above="@+id/switch_color"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:drawSelectorOnTop="true"
        android:prompt="@string/component_color_spinner" />

    <SeekBar
        android:id="@+id/switch_color"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:max="100"
        android:minWidth="200dip"
        android:progress="50"/>

</RelativeLayout>

I have an app with a layout using the following view objects. 2 spinners, 2 buttons, 1 seekbar and a custom view object that is basically a canvas I draw to.

For some reason the spinners and seekbar are drawn on top of the canvas, but the 2 buttons are not. I'm confused as to why this is.

So, how is this ordered determined?

Thanks.

Edit: XML at request (this is before I moved the customview to the top which fixes the problem). If the order is supposed to be XML based then the custom view should have covered the spinners which it did not.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <Spinner
        android:id="@+id/cc_component"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:drawSelectorOnTop="true"
        android:prompt="@string/cc_component_spinner" />

    <TextView
        android:id="@+id/desc"
        android:text="@string/step1_desc"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="10dip"
        android:visibility="gone"
        android:layout_centerHorizontal="true"
        android:textSize="25sp"/>

    <Button
        android:id="@+id/switch_left"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"/>

    <com.cmllc.zcc.CCView
        android:id="@+id/cc"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <Button
        android:id="@+id/switch_right"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:background="@drawable/rightarrow1" /> 

    <Spinner
        android:id="@+id/component_color"
        android:layout_above="@+id/switch_color"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:drawSelectorOnTop="true"
        android:prompt="@string/component_color_spinner" />

    <SeekBar
        android:id="@+id/switch_color"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:max="100"
        android:minWidth="200dip"
        android:progress="50"/>

</RelativeLayout>

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

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

发布评论

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

评论(2

缺⑴份安定 2024-10-11 03:00:06

它应该只是它们添加到视图中的顺序。除此之外,您可以使用View.bringChildToFront()

请参阅这篇文章:在Android中定义RelativeLayout视图的Z顺序< /a>

在 Dianne Hackborn 的此处发布的帖子中,作为 Google 的 Android 开发人员,她对 z 顺序行为也表示了同样的看法。

我实现了您的布局,或者在没有您的所有资源和自定义 View 对象的情况下尽可能接近地实现了您的布局,并且我得到了我除外的结果。第一个微调器、文本视图和按钮出现在自定义对象下方,我用以下内容进行模仿:

<TextView
    android:id="@+id/cc"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#880000FF" />

然后我在顶部看到第二个按钮、第二个微调器和搜索栏。您对自定义视图做了什么奇怪的事情吗?这或者可能是由于后来操纵你的观点而发生的事情。

编辑:我仔细检查了,我确实看到了上面描述的显示

It should just be the order in which they are added to the view. Other than that you can use View.bringChildToFront().

See this post: Defining Z order of views of RelativeLayout in Android

And in a post here by Dianne Hackborn, an Android Developer at Google, she indicates the same thing regarding z-order behavior.

I implemented your layout, or as closely as I could without all of your resources and custom View object, and I get the results I except. The first spinner, textview, and button appear underneath the custom object, which I am imitating with the following:

<TextView
    android:id="@+id/cc"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#880000FF" />

I then see the second button, second spinner, and seekbar on top. Are you doing anything weird with your custom view? That or perhaps it is something happening due to later manipulation of your views.

Edit: I double checked and I do indeed see the display as I describe above

短暂陪伴 2024-10-11 03:00:06

您没有相对于任何其他人设定您的任何观点。在相对布局中,您需要告诉视图您的视图位于其他视图的上方、下方等。您需要为它们提供相对设置,而不仅仅是其中一些的align_parent。

You're not setting any of your views relative to any others. In a relative layout, you need to tell the view that your views are above, below, etc other views. You need to give them relative settings, not just align_parent on a few of them.

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