gpt4 book ai didi

android - 在 ListView 的列表项底部添加阴影

转载 作者:太空狗 更新时间:2023-10-29 16:03:33 26 4
gpt4 key购买 nike

我想在我的 ListView 项的底部添加阴影!!我试过 paddingEdageLenght 但没有发生任何变化!我添加了圆形边缘,但无法在项目下方添加阴影

这是我的列表项xml文件

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fadingEdgeLength="5sp" >

<ImageView
android:id="@+id/site_image"
android:layout_height="50dp"
android:layout_width="65dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_margin="10dp"/>

<TextView
android:id="@+id/site_name"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_toRightOf="@id/site_image"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:textSize="20sp"/>

<TextView
android:id="@+id/site_description"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_below="@id/site_name"
android:layout_marginTop="5dp"
android:layout_marginLeft="10dp"
android:layout_toRightOf="@id/site_image"
android:textSize="15sp"/>


</RelativeLayout>

这是我的 ListView xml 文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<ListView
android:id="@+id/near_sites"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_margin="10dp"
android:fadingEdgeLength="5sp"
android:dividerHeight="10sp"
android:divider="@android:color/transparent" />

</RelativeLayout>

有什么帮助吗?

最佳答案

list_view_item 中,在 RelativeLayout 之后添加一个 dummy View 并将它们全部包裹在垂直 LinearLayout 中,像这样:

<LinearLayout
android:orientation="vertical">

<RelativeLayout>
...
...
</RelativeLayout>

<View
android:id="@+id/shadow"
android:layout_width="fill_parent"
android:layout_height="3dp" <!--or your needed height value-->
android:background="@drawable/shadow_drawable">
</View>

</LinearLayout>

然后在 drawable 文件夹中添加新的 shadow_drawable.xml 并将其放在里面

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android=”http://schemas.android.com/apk/res/android”>
<gradient
android:startColor="@color/#000000" <!--black-->
android:endColor="@color/#FFFFFF" <!--white-->
android:angle="90" <!-- angle of the gradient-->
>
</gradient>
</shape>

关于android - 在 ListView 的列表项底部添加阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22936520/

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