Thorium-android-app/app/src/main/res/layout/row_video.xml

51 lines
1.8 KiB
XML
Raw Normal View History

2018-03-03 01:10:13 +01:00
<?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="" />
2018-03-03 01:10:13 +01:00
<TextView
android:layout_marginStart="75dp"
2018-03-03 01:10:13 +01:00
android:id="@+id/name"
android:textAppearance="@style/Base.TextAppearance.AppCompat.Title"
2018-03-03 01:10:13 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
2018-03-03 01:10:13 +01:00
<TextView
android:layout_marginStart="75dp"
android:id="@+id/videoMeta"
2018-03-03 01:10:13 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="@style/Base.TextAppearance.AppCompat.Caption"
2018-03-03 01:10:13 +01:00
/>
<TextView
android:layout_marginStart="75dp"
android:id="@+id/videoOwner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="@style/Base.TextAppearance.AppCompat.Caption"
/>
2018-03-03 01:10:13 +01:00
</LinearLayout>
</android.support.v7.widget.CardView>