查看另一个视图

时间:2011-05-02 15:07:58

标签: android layout popup

我的屏幕上有一些弹出窗口,需要一些不常见的东西。

我将带有Header + Content + Footer的弹出窗口布局为LinearLayout。但我需要在我的组件上显示一个小箭头。

当弹出窗口位于锚点上方且箭头已关闭时,我使用以下代码绘制它。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/content" android:orientation="vertical"
android:layout_width="wrap_content" android:layout_height="wrap_content">

<LinearLayout android:id="@+id/header" android:background="@drawable/background_header"
    android:orientation="horizontal" android:layout_width="match_parent"
    android:layout_height="wrap_content">
</LinearLayout>

<HorizontalScrollView android:background="@drawable/background"
    android:layout_width="wrap_content" android:layout_height="match_parent"
    android:scrollbars="none">

</HorizontalScrollView>

<ImageView android:id="@+id/arrow_down" android:layout_width="wrap_content"
    android:layout_height="wrap_content" android:layout_marginTop="-3dip"
    android:src="@drawable/quickcontact_arrow_down" />
</LinearLayout>

在运行时,我可以使用以下代码将箭头正好放在锚点上方。

    ViewGroup.MarginLayoutParams param = (ViewGroup.MarginLayoutParams) mArrowDown
            .getLayoutParams();
    param.leftMargin = root.getMeasuredWidth()
            - (screenWidth - anchor.getLeft());

它显示正确。

现在我需要做同样的事情,但箭头需要在向上显示。 我的问题是箭头需要在另一个视图上重叠一点(因为背景颜色与它们匹配),所以这就是为什么它需要在之后绘制。

我尝试使用FrameLayout并让“content”有一些topMargin,但它不起作用。

我知道可以使用AbsoluteLayout完成,但我不惜一切代价避免使用它。

编辑:

在Josh回答之后,我写了下面的代码。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content" android:layout_height="wrap_content">
<LinearLayout android:id="@+id/content"
    android:orientation="vertical" android:layout_width="wrap_content"
    android:layout_height="wrap_content" android:fadingEdgeLength="0dip">

    <RelativeLayout android:id="@+id/header"
        android:background="@drawable/background_header" android:orientation="horizontal"
        android:layout_width="match_parent" android:layout_height="wrap_content">
    </RelativeLayout>

    <HorizontalScrollView android:background="@drawable/background"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:scrollbars="none">
    </HorizontalScrollView>
</LinearLayout>
<ImageView android:id="@+id/arrow_up" android:layout_above="@id/content"
    android:layout_width="wrap_content" android:layout_height="wrap_content"
    android:src="@drawable/quickcontact_arrow_up" />
</RelativeLayout>

但我不知道为什么,现在没有显示箭头。

1 个答案:

答案 0 :(得分:4)

我不会假装读完所有xml。我想你想要的是RelativeLayout。您应该能够使用此技术将任何小箭头视图放置在相对于包含它的RelativeLayout边界的任何位置。

例如,如果将所有内容包装在一个RelativeLayout中,然后添加一个Button作为第二项,则可以给出按钮属性,如alignParentRight = true和layout_marginRight = 10dp,以放置按钮10dp屏幕的右边缘,已经存在的任何视图的ON TOP。