gpt4 book ai didi

Android:在叠加的 TextField 背景中流动的 ListView

转载 作者:太空狗 更新时间:2023-10-29 15:04:56 25 4
gpt4 key购买 nike

我想要一个 ListView,它在向上滚动时在定义的 TextView 的背景中流动(图片上的右手 View )。在左手 View (现状)上,我使用了相对布局,但其中使用的元素是固定的。所以它在滚动时看起来很不稳定。

如果可能的话,我希望在我的 list.xml 中实现这样的功能?

链接到图片以更好地理解我的想法:

enter image description here

我的 activity.xml 看起来像:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/hintergrund1"
tools:context="com.example.apptest2.MainActivity"
tools:ignore="MergeRootFrame" >

<EditText
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />

<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/text1"
android:drawSelectorOnTop="true" >

</ListView>

</RelativeLayout>

最佳答案

不知道我是否理解正确,但试试这个:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/hintergrund1"
tools:context="com.example.apptest2.MainActivity"
tools:ignore="MergeRootFrame" >

<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:drawSelectorOnTop="true" >

</ListView>

<EditText
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>

关于Android:在叠加的 TextField 背景中流动的 ListView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22933607/

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