1

List ビューと cardslib ライブラリの操作中に問題が発生しました。list_card_thumbnail_layout と同じ構造のカード リストを作成し、各カードにはカード レイアウト card_thumbnail_layout に使用した写真とテキストが含まれていますが、すべてのサムネイルのソースは既に読み込まれているビットマップです。サムネイルをカードの幅に合わせて、サムネイル内に収まるように拡大縮小します 私がしたことは: カードリストの場合:

<it.gmariotti.cardslib.library.view.CardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card="http://schemas.android.com/apk/res-auto"
    android:id="@+id/list_cardId"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    style="@style/list_card.thumbnail"
    card:card_layout_resourceID="@layout/card_thumbnail_layout"
    />

個人カードの場合:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:card="http://schemas.android.com/apk/res-auto"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="wrap_content">

            <it.gmariotti.cardslib.library.view.component.CardThumbnailView
                style="@style/card_thumbnail_outer_layout"
                android:id="@+id/card_thumbnail_layout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"/>

            <!-- Main Content View -->
            <FrameLayout
                android:id="@+id/card_main_content_layout"
                style="@style/card.content_outer_layout"
                android:layout_width="match_parent"
                android:layout_height="match_parent"/>

</LinearLayout>

そしてスタイルで:

<style name="card_thumbnail_image">
        <item name="android:layout_width">match_parent</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:layout_gravity">center</item>
        <item name="android:gravity">center</item>
        <item name="android:scaleType">centerCrop</item>
    </style>

    <style name="card_thumbnail_outer_layout">
        <item name="android:layout_width">wrap_content</item>
        <item name="android:layout_height">wrap_content</item>
    </style>

どこに問題があるのか​​わからない。:(

ここに画像の説明を入力

4

1 に答える 1

1

この場合、属性「adjustViewBounds」が答えだと思います

これを試してください:

<style name="card_thumbnail_image">
    <item name="android:layout_width">match_parent</item>
    <item name="android:layout_height">wrap_content</item>
    <item name="android:layout_gravity">center</item>
    <item name="android:gravity">center</item>
    <item name="android:scaleType">centerInside</item>
    <item name="android:adjustViewBounds">true</item>
</style>
于 2014-08-05T16:30:52.143 に答える