Cardslib - 所有卡片上不需要的 12dp 边距

Cardslib - unwanted 12dp margin on all cards

总结:我是 Android 开发的新手,我正在使用 Gabriele Mariotti 出色的 cardslib 在卡片上显示图像 (.jpgs)。我希望图像无边距地覆盖整张卡片。相反,我在图像的所有边上看到了不需要的 12dp 边距。我尝试了各种方法,但一直无法删除此边距(换句话说,将边距设置为 0dp)。

详细信息:我正在卡片上显示 .jpg。 .jpg 是卡片上唯一的东西(即没有 header、没有缩略图等)问题是卡片的所有面都出现了额外的空白。根据 .jpg 和卡片的相对纵横比,top/bottom 或 left/right 边缘有更多的空白,但至少空白正好是 12dp。

查看文档,尤其是 CARD documentation,我似乎应该设置 layout_marginTop 和 layout_marginBottom 之类的内容。我尝试了这些的许多不同排列,但无法删除 12dp 边距。我的布局目前看起来像这样:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="0dp"
    android:layout_marginTop="0dp"
    android:layout_marginBottom="0dp"
    android:paddingLeft="0dp"
    android:paddingRight="0dp"
    android:paddingTop="0dp"
    android:paddingBottom="0dp" >

    <it.gmariotti.cardslib.library.view.CardViewNative
        android:id="@+id/carddemo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="0dp"
        android:layout_marginTop="0dp"
        android:layout_marginBottom="0dp"
        android:paddingLeft="0dp"
        android:paddingRight="0dp"
        android:paddingTop="0dp"
        android:paddingBottom="0dp" />
</LinearLayout>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_marginTop="0dp"
    android:layout_marginBottom="0dp"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="238dp">

    <ImageView
        android:layout_marginTop="0dp"
        android:layout_marginBottom="0dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/imageView"/>
</LinearLayout>

(我意识到上面的许多设置都是多余的,不必要的或愚蠢的。在找到正确的设置后,我将删除不需要的设置。)

我在 Whosebug "cardslib" 标签中搜索了 "margin"(1 次命中)、"marginTop"(0 次命中)、"padding"(1 次命中)、"layout"(25 次点击)但未在任何这些答案中找到解决方案。

勾选这个file

对于您的情况,您可以在项目中覆盖这些值:

    <dimen name="card_main_content_native_default_paddingLeft">12dp</dimen>
    <dimen name="card_main_content_native_default_paddingRight">12dp</dimen>
    <dimen name="card_main_content_native_default_paddingTop">12dp</dimen>
    <dimen name="card_main_content_native_default_paddingBottom">12dp</dimen>