43 lines
1.5 KiB
XML
43 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- START*** Root Container *** -->
|
|
<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:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
card_view:cardCornerRadius="6dp"
|
|
card_view:cardElevation="3dp"
|
|
card_view:cardUseCompatPadding="true">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/linearLayout"
|
|
android:padding="8dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/thumb"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:scaleType="fitXY"
|
|
android:contentDescription="" />
|
|
<TextView
|
|
android:layout_marginStart="75dp"
|
|
android:id="@+id/name"
|
|
android:textAppearance="@style/Base.TextAppearance.AppCompat.Title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
|
|
<TextView
|
|
android:layout_marginStart="75dp"
|
|
android:id="@+id/videoMeta"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/Base.TextAppearance.AppCompat.Caption"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v7.widget.CardView>
|