121 lines
No EOL
5.3 KiB
XML
121 lines
No EOL
5.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:layout_height="wrap_content"
|
|
android:paddingHorizontal="20dp"
|
|
android:paddingVertical="10dp"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<TextView
|
|
android:id="@+id/file_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:maxLines="2"
|
|
android:ellipsize="end"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/download_item_data"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintHorizontal_weight="0.7"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/file_name"
|
|
app:layout_constraintVertical_bias="0.0">
|
|
|
|
<HorizontalScrollView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="bottom"
|
|
android:paddingStart="5dp"
|
|
android:paddingEnd="0dp"
|
|
android:scrollbars="none"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintHorizontal_bias="0.0"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent">
|
|
|
|
<TextView
|
|
android:id="@+id/duration"
|
|
style="@style/Widget.Material3.FloatingActionButton.Large.Secondary"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="5dp"
|
|
android:background="@drawable/rounded_corner"
|
|
android:backgroundTint="?attr/colorSecondary"
|
|
android:clickable="false"
|
|
android:ellipsize="end"
|
|
android:gravity="center"
|
|
android:maxLength="17"
|
|
android:maxLines="1"
|
|
android:minWidth="30dp"
|
|
android:paddingHorizontal="5dp"
|
|
android:textSize="12sp"
|
|
android:textStyle="bold"
|
|
app:cornerRadius="10dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/filesize"
|
|
style="@style/Widget.Material3.FloatingActionButton.Large.Secondary"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="5dp"
|
|
android:background="@drawable/rounded_corner"
|
|
android:backgroundTint="?attr/colorSecondary"
|
|
android:clickable="false"
|
|
android:ellipsize="end"
|
|
android:gravity="center"
|
|
android:maxLength="17"
|
|
android:maxLines="1"
|
|
android:minWidth="30dp"
|
|
android:paddingHorizontal="5dp"
|
|
android:textSize="12sp"
|
|
android:textStyle="bold"
|
|
app:cornerRadius="10dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<TextView
|
|
android:id="@+id/extension"
|
|
style="@style/Widget.Material3.FloatingActionButton.Large.Secondary"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="5dp"
|
|
android:background="@drawable/rounded_corner"
|
|
android:backgroundTint="?attr/colorSecondary"
|
|
android:clickable="false"
|
|
android:gravity="center"
|
|
android:minWidth="30dp"
|
|
android:paddingHorizontal="5dp"
|
|
android:textSize="12sp"
|
|
android:textStyle="bold"
|
|
app:cornerRadius="10dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</HorizontalScrollView>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |