gpt4 book ai didi

Android ListView 与 CardView : Last Card not fully displayed when scrolling

转载 作者:太空狗 更新时间:2023-10-29 16:14:35 24 4
gpt4 key购买 nike

enter image description here

我创建了一个 ListView,并向其添加了 CardView。

正如您在图像中看到的,当我开始滚动时,ListView 中的最后一个 Card 没有完全显示。它会向上滚动,但不会超出 Android 底部的导航栏。我一直在 HTC One M8 上进行测试。

这是 ListView :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<ListView
android:id="@+id/wanna_list"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:divider="@null"/>
</LinearLayout>

这是我膨胀并设置到 ListView 适配器中的 CardView:

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

<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="200dp"
android:id="@+id/cv"
android:foreground="?android:attr/selectableItemBackground"
android:clickable="true"
card_view:cardCornerRadius="6dp"
card_view:cardUseCompatPadding="true"
card_view:cardElevation="2dp">
<!-- compat padding is required if using AppCompat -->

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp" >

<ImageView
android:layout_width="100dp"
android:layout_height="100dp"
android:id="@+id/thumbnail"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginRight="16dp"
android:src="@drawable/india"
android:scaleType="centerCrop" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/firstLine"
android:layout_toRightOf="@+id/thumbnail"
android:layout_alignParentTop="false"
android:textSize="20sp"
android:text="Tennis with Peter"
android:layout_alignTop="@+id/thumbnail" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/secondLine"
android:layout_below="@+id/firstLine"
android:text="10 Oct at 7pm"
android:layout_alignLeft="@+id/firstLine" />

<Button
android:layout_width="180dp"
android:layout_height="wrap_content"
android:text="YES"
android:id="@+id/button3"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignLeft="@+id/thumbnail" />

<Button
android:layout_width="60dp"
android:layout_height="wrap_content"
android:text="NO"
android:id="@+id/button4"
android:layout_toRightOf="@+id/button3"
android:layout_alignBottom="@+id/button3"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="false" />

</RelativeLayout>

</android.support.v7.widget.CardView>

</LinearLayout>

我也试过我的卡片 View 布局,但没有将它包装在 LinearLayout 中,但它仍然不起作用。

layout xml 中是否有设置可以解决这个问题?

提前致谢。

最佳答案

 android:layout_marginBotton=" "

添加边距底部应该尝试一次。

关于Android ListView 与 CardView : Last Card not fully displayed when scrolling,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33031485/

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