CardView
にView
を作成します。すべては、CardView
の一部をカバーする灰色の表示です。CardView内でビューを作成するには?
は私が模倣しようとしている:あなたはこの画像にカードビュー内で表示された場合は、右ここにここに示されている彼または彼女の名前の下に人の写真と右の間にあるこの灰色の景色を見ることができますこれは以下の通りですが、私はちょっと混乱しています。グレーであるView
を追加しようとしましたが、View
は、CardView
内にRelativeLayout
のネストされたandroid:layout_margin="16dp"
があるという事実のために、CardView
全体に拡張されません。第二に、私はCardView
の高さをハードコードしたくないですが、android:layout_height="match_parent"
のようなものを入れようとすると、View
は表示されません。誰でも正しい方向に私がどのようにの灰色を達成することができるかを教えてもらえれば、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:background="@color/material_color_grey_200"
xmlns:fresco="http://schemas.android.com/tools"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
>
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/cv_news_feed"
android:minHeight="100dp"
card_view:cardElevation="2dp"
card_view:cardUseCompatPadding="true"
card_view:cardCornerRadius="5dp"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="16dp"
>
<TextView
android:textColor="@color/black"
android:layout_alignParentTop="true"
android:id="@+id/txt_post_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:ellipsize="end"
android:paddingRight="80dp"
android:maxLines="2"
android:fontFamily="sans-serif-medium" />
<TextView
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:id="@+id/txt_timestamp"
android:layout_marginTop="4dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:textColor="@color/material_color_grey_400"
android:layout_marginLeft="8dp"
android:textSize="14sp" />
<TextView
android:layout_below="@id/txt_post_title"
android:id="@+id/txt_statusMsg"
android:layout_marginTop="8dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:ellipsize="end"
android:maxLines="3"
android:textSize="16sp" />
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/poster_profile_photo"
android:layout_width="50dp"
android:layout_height="50dp"
fresco:placeholderImageScaleType="centerCrop"
fresco:placeholderImage="@mipmap/blank_prof_pic"
fresco:roundedCornerRadius="5dp"
fresco:roundBottomLeft="false"
fresco:roundBottomRight="false"
fresco:roundingBorderWidth="1dp"
android:layout_alignParentLeft="true"
android:layout_marginRight="8dp"
android:layout_marginTop="16dp"
android:layout_below="@id/txt_statusMsg"
/>
<TextView
android:layout_below="@id/txt_statusMsg"
android:layout_toRightOf="@id/poster_profile_photo"
android:id="@+id/txt_name"
android:ellipsize="end"
android:maxLines="1"
android:textSize="16sp"
android:layout_marginTop="16dp"
android:textColor="@color/colorPrimary"
android:layout_width="wrap_content"
android:maxWidth="125dp"
android:layout_height="wrap_content" />
<View
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@color/material_color_grey_200"
android:layout_below="@id/txt_name"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/privacy_status"
android:paddingTop="8dp"
android:paddingLeft="8dp"
android:fontFamily="sans-serif"
android:layout_toRightOf="@id/txt_name"
/>
<TextView
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:fontFamily="sans-serif"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:id="@+id/num_comments" />
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/commenter_photo_one"
android:layout_width="30dp"
android:layout_height="30dp"
fresco:placeholderImageScaleType="centerCrop"
fresco:placeholderImage="@mipmap/blank_prof_pic"
fresco:roundedCornerRadius="5dp"
fresco:roundBottomLeft="false"
fresco:roundBottomRight="false"
fresco:roundingBorderWidth="1dp"
android:layout_alignParentBottom="true"
android:layout_toLeftOf="@id/num_comments"
/>
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/commenter_photo_two"
android:layout_width="30dp"
android:layout_height="30dp"
fresco:placeholderImageScaleType="centerCrop"
fresco:placeholderImage="@mipmap/blank_prof_pic"
fresco:roundedCornerRadius="5dp"
fresco:roundBottomLeft="false"
fresco:roundBottomRight="false"
fresco:roundingBorderWidth="1dp"
android:layout_alignParentBottom="true"
android:layout_marginRight="20dp"
android:layout_toLeftOf="@id/num_comments"
/>
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/commenter_photo_three"
android:layout_width="30dp"
android:layout_height="30dp"
fresco:placeholderImageScaleType="centerCrop"
fresco:placeholderImage="@mipmap/blank_prof_pic"
fresco:roundedCornerRadius="5dp"
fresco:roundBottomLeft="false"
fresco:roundBottomRight="false"
fresco:roundingBorderWidth="1dp"
android:layout_marginRight="40dp"
android:layout_alignParentBottom="true"
android:layout_toLeftOf="@id/num_comments"
/>
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/commenter_photo_four"
android:layout_width="30dp"
android:layout_height="30dp"
fresco:placeholderImageScaleType="centerCrop"
fresco:placeholderImage="@mipmap/blank_prof_pic"
fresco:roundedCornerRadius="5dp"
fresco:roundBottomLeft="false"
fresco:roundBottomRight="false"
fresco:roundingBorderWidth="1dp"
android:layout_marginRight="60dp"
android:layout_alignParentBottom="true"
android:layout_toLeftOf="@id/num_comments"
/>
</RelativeLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
こんにちはこれは最高です!これはありがとう!私はちょうど1つの質問があります: 'View'は私の' SimpleDraweeView'をカバーしています。 'SimpleDraweeView'上に'写真 'を表示させる方法はありますか? – user1871869
左に 'SimpleDraweeView'を意味しますか?うん、あなたのレイアウトの 'View'の下に置いてください。私はあなたが変更を確認することができます編集を作った –
私の答えをupvoteしてもいいですか^^ –