在我的活动中,我将在创建时设置布局活动。然后我想为我的数组中的每一个项目充气我的卡片视图。
到目前为止,我已经把所有东西都装上了,但是我的信用卡已经失去了利润。当通过XML添加到布局中时,边距起作用,但当它作为单独的XML文件膨胀时,边距将丢失。
我正在给活动卡充气,就像这样:

LinearLayout item = (LinearLayout)findViewById(R.id.card_holder);
View child = getLayoutInflater().inflate(R.layout.activity_main_card, null);
item.addView(child);

在活动卡中,我的XML如下:
<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"
    card_view:cardCornerRadius="2dp"
    android:layout_marginBottom="16dp">

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <ImageView
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:scaleType="fitCenter"
            android:background="@drawable/cin"/>

        <LinearLayout
             android:layout_width="fill_parent"
             android:layout_height="wrap_content"
             android:orientation="vertical"
             android:padding="16dp">

             <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textSize="20sp"
                android:textStyle="bold"
                android:textColor="@color/dark_grey"/>

             <TextView
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:textSize="12sp"
                 android:textStyle="normal"
                 android:textColor="@color/grey_500"/>

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

有人能告诉我哪里出错了吗?

最佳答案

您将null作为父ViewGroup参数传入inflate()。这将导致忽略所有的layout_*属性,因为充气机不知道哪些属性对放置它的容器有效(即,它不知道要在LayoutParams上设置哪个View类型)。

View child = getLayoutInflater().inflate(R.layout.activity_main_card, null);

应该是
View child = getLayoutInflater().inflate(R.layout.activity_main_card, item, false);

有关更多信息,请参见this great article这是一个常见的错误。

08-03 20:55