2022-09-09 17:53:39 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2022-09-09 18:12:46 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-09-09 20:19:00 +05:30
|
|
|
android:background="?attr/selectableItemBackground"
|
2022-09-09 17:53:39 +05:30
|
|
|
android:orientation="horizontal"
|
2022-09-09 18:12:46 +05:30
|
|
|
android:paddingHorizontal="10dp"
|
|
|
|
android:paddingVertical="8dp">
|
2022-09-09 17:53:39 +05:30
|
|
|
|
2022-10-10 20:28:26 +05:30
|
|
|
<LinearLayout
|
2022-09-09 17:53:39 +05:30
|
|
|
android:layout_width="0dp"
|
2022-10-10 20:28:26 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-10-10 20:33:03 +05:30
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_marginEnd="10dp">
|
2022-10-10 20:28:26 +05:30
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/fileName"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-10-10 20:33:03 +05:30
|
|
|
android:layout_marginVertical="2dp"
|
|
|
|
android:textSize="16sp" />
|
2022-10-10 20:28:26 +05:30
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/uploaderName"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-10-10 20:33:03 +05:30
|
|
|
android:layout_marginVertical="2dp"
|
2022-10-10 20:28:26 +05:30
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/videoInfo"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-10-10 20:33:03 +05:30
|
|
|
android:layout_marginVertical="2dp"
|
2022-10-10 20:28:26 +05:30
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2022-09-09 17:53:39 +05:30
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/fileSize"
|
|
|
|
android:layout_width="wrap_content"
|
2022-10-10 20:33:03 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center" />
|
2022-09-09 17:53:39 +05:30
|
|
|
|
|
|
|
</LinearLayout>
|