gpt4 book ai didi

android - 查看另一个 View

转载 作者:行者123 更新时间:2023-11-29 16:23:38 25 4
gpt4 key购买 nike

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

我将带有页眉 + 内容 + 页脚的弹出窗口布局到 LinearLayout 中。但是我需要一个小箭头来显示我的组件。

当弹出窗口位于 anchor 上方且箭头向下时,我使用以下代码绘制它。

<?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>

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

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

而且显示正确。

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

我尝试使用 FrameLayout 并让“内容”有一些 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>

但是不知道为什么,现在箭头不显示了。

最佳答案

我不会假装已经阅读了所有这些 xml。不过,我认为您想要的是 RelativeLayout。您应该能够使用此技术将任何小箭头 View 放置在您喜欢的任何位置,相对于包含它的 RelativeLayout 的边界。

例如,如果您将所有内容都包装在一个 RelativeLayout 中,然后添加一个 Button 作为第二项,您可以为按钮提供 alignParentRight=true 和 layout_marginRight=10dp 等属性,以将按钮放置在距离 10dp 的位置屏幕的右边缘,在已经存在的任何 View 之上。

关于android - 查看另一个 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5858823/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com