38

新しいCardViewで遊んでいますが、マージンが適用されていないようです。

<?xml version="1.0" encoding="utf-8"?>

<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:id="@+id/card_view"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="18dp"
android:layout_marginLeft="18dp"
android:layout_marginRight="18dp"
card_view:cardCornerRadius="4dp"
card_view:cardBackgroundColor="#FFA"
card_view:layout_margind="4dp">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

<TextView
    android:id="@+id/info_text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"/>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"/>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"/>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"/>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"/>

</LinearLayout>

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

ちなみに、ViewPagerにあるFragmentで使用しています。CardViewを使用していても、カードは画面の幅全体 ( match_parent ) を拡張します。android:layout_marginLeft="18dp"android:layout_marginRight="18dp"

私が間違っているかもしれないアイデアはありますか?

4

5 に答える 5

37

RecyclerView を使用して CardView を追加する場合は、android:layout_margin で十分です。

しかし、ListView を使用して CardView を追加すると、次のようになります。

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
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:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="11dp"
    android:layout_marginRight="11dp"
    android:layout_marginTop="11dp">
       (other layout ...)
</android.support.v7.widget.CardView>

</FrameLayout>

しかし、それは通常、最適なものではありません。

于 2014-08-29T03:52:48.670 に答える
23

私は前に同じ問題を抱えていました、私はここで答えを見つけました... CardView layout_width="match_parent" は親の RecyclerView 幅と一致しません

ViewPager 内で CardView xml をインフレートするときに、その中に ViewGroup を渡します。これにより、インフレータはどのレイアウト パラメータを参照するかを知ることができます。

レイアウト ファイルをインフレートするには、次のようなものを使用します。

View v = LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.view_list_item, viewGroup,false);

それが役立つことを願っています

于 2014-07-08T06:02:31.730 に答える
7

ViewPager.LayoutParams は ViewGroup.MarginLayoutParams を拡張しません

それはとても簡単です。

http://developer.android.com/reference/android/support/v4/view/ViewPager.LayoutParams.html

于 2015-02-28T09:59:52.143 に答える
2

余白を適切に表示するには、カード ビューをレイアウト内に配置する必要があります。特に、カード ビューがリサイクラー ビューのアイテムとして表示される場合はそうです。

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

<androidx.cardview.widget.CardView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        card_view:cardBackgroundColor="@android:color/white"
        card_view:cardElevation="2dp"
        android:layout_marginBottom="25dp"/>
</LinearLayout>
于 2019-08-04T10:23:51.553 に答える