gpt4 book ai didi

java - Android listview覆盖另一个 View

转载 作者:行者123 更新时间:2023-11-29 20:05:40 24 4
gpt4 key购买 nike

我有一个 View ,其中包含一个顶 View (它是一个 map View ,但尚未实现)和一个位于其下方的 ListView 。

我想做的是让 ListView 的顶部稍微覆盖顶部 View 的底部。这是类似于我想要实现的目标:

enter image description here

(没有选项卡标题,图像将是 map View )

我不确定我该如何实现,这是我目前所拥有的:

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

<View
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="250dp"
android:background="@android:color/holo_red_dark">

</View>

<com.hmm.widgets.CustomListView
android:id="@+id/runners_list"
android:background="@android:color/darker_gray"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:dividerHeight="10dp"
android:divider="@android:color/darker_gray">

</com.hmm.widgets.CustomListView>

</RelativeLayout>

我试过负边距,但没有用。我不确定如何才能实现类似的目标。我应该使用 FrameLayout 吗?

最佳答案

您可以在您的案例中使用 LinearLayout 并像这样设计布局。这是为您的自定义 ListView

设置负 layout_marginTop 的技巧
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">

<View
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="250dp"
android:background="@android:color/holo_red_dark">

</View>

<com.hmm.widgets.CustomListView
android:id="@+id/runners_list"
android:background="@android:color/darker_gray"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="@dimen/activity_vertical_margin"
android:layout_marginRight="@dimen/activity_vertical_margin"
android:dividerHeight="10dp"
android:layout_marginTop="-40dp"
android:divider="@android:color/darker_gray">

</com.hmm.widgets.CustomListView>

</LinearLayout>

关于java - Android listview覆盖另一个 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35681951/

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