Пожалуйста, реализуйте cardview-v7, это просто в использовании и реализации
dependencies {
implementation'com.android.support:cardview-v7:21.0.0-rc1'
}
попробуйте таким образом
<android.support.v7.widget.CardView
android:id="@+id/card_view"
xmlns:card_view="https://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardBackgroundColor="@color/grey_300"
card_view:cardCornerRadius="10dp"
card_view:cardElevation="5dp"
card_view:cardUseCompatPadding="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="7dp"
android:orientation="verticle">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="7dp">
<ImageView
android:id="@+id/team_emblem"
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/rangers"
android:layout_marginLeft="10dp"/>
<TextView
android:id="@+id/team_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Rangers FC"
android:textColor="@color/colorPrimaryDark"
android:textSize="15sp"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"/>
</LinearLayout>
<View
android:layout_width="wrap_content"
android:layout_height="1dp"
android:layout_gravity="center"
android:background="#F2161616" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="7dp"
android:layout_gravity="bottom">
<ImageView
android:id="@+id/team_emblem"
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/rangers"
android:layout_marginLeft="10dp"/>
<TextView
android:id="@+id/team_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Rangers FC"
android:textColor="@color/colorPrimaryDark"
android:textSize="20sp"
android:layout_marginLeft="10dp"/>
</LinearLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
Спасибо