mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 07:10:29 +05:30
65 lines
2.1 KiB
XML
65 lines
2.1 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="@drawable/rounded_ripple"
|
||
|
android:orientation="horizontal"
|
||
|
android:padding="10dp">
|
||
|
|
||
|
<androidx.cardview.widget.CardView
|
||
|
android:layout_width="80dp"
|
||
|
android:layout_height="45dp"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_marginEnd="10dp"
|
||
|
app:cardCornerRadius="12dp">
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
tools:src="@tools:sample/backgrounds/scenic" />
|
||
|
|
||
|
</androidx.cardview.widget.CardView>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_weight="1"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/title"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginBottom="5dp"
|
||
|
android:ellipsize="end"
|
||
|
android:maxLines="1"
|
||
|
tools:text="I am Hardstyle - Episode 111" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/uploader"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textSize="14sp"
|
||
|
tools:text="Brennan Heart" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/duration"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="10dp"
|
||
|
android:textSize="14sp"
|
||
|
tools:text="10:00" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</LinearLayout>
|