mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
118 lines
5.2 KiB
XML
118 lines
5.2 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
android:id="@+id/download_root"
|
||
|
android:orientation="vertical"
|
||
|
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="match_parent"
|
||
|
tools:context=".ui.download.DownloadFragment">
|
||
|
<LinearLayout
|
||
|
android:layout_margin="10dp"
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
<TextView
|
||
|
android:layout_marginBottom="5dp"
|
||
|
android:text="@string/download_storage_text"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content">
|
||
|
</TextView>
|
||
|
<LinearLayout
|
||
|
android:layout_marginBottom="5dp"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="12dp"
|
||
|
android:orientation="horizontal">
|
||
|
<View
|
||
|
android:layout_weight="0.5"
|
||
|
android:id="@+id/download_used"
|
||
|
android:background="@color/usedStorageColor"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="match_parent"/>
|
||
|
<View
|
||
|
android:id="@+id/download_app"
|
||
|
android:layout_weight="0.10"
|
||
|
android:background="?attr/colorPrimary"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="match_parent"/>
|
||
|
<View
|
||
|
android:id="@+id/download_free"
|
||
|
android:layout_weight="0.10"
|
||
|
android:background="@color/freeStorageColor"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="match_parent"/>
|
||
|
</LinearLayout>
|
||
|
<LinearLayout
|
||
|
android:orientation="horizontal"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
<View
|
||
|
android:layout_marginEnd="5dp"
|
||
|
android:layout_marginTop="5dp"
|
||
|
android:layout_marginBottom="5dp"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:background="@color/usedStorageColor"
|
||
|
android:layout_width="10dp"
|
||
|
android:layout_height="10dp"/>
|
||
|
<TextView
|
||
|
android:id="@+id/download_used_txt"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
tools:text="Used • 30.58GB"
|
||
|
android:textSize="12sp"
|
||
|
android:textColor="?attr/textColor"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"/>
|
||
|
|
||
|
<View
|
||
|
android:layout_margin="5dp"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:background="?attr/colorPrimary"
|
||
|
android:layout_width="10dp"
|
||
|
android:layout_height="10dp"/>
|
||
|
<TextView
|
||
|
android:id="@+id/download_app_txt"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
tools:text="App • 30.58GB"
|
||
|
android:textSize="12sp"
|
||
|
android:textColor="?attr/textColor"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"/>
|
||
|
<View
|
||
|
android:layout_margin="5dp"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:background="@color/freeStorageColor"
|
||
|
android:layout_width="10dp"
|
||
|
android:layout_height="10dp"/>
|
||
|
<TextView
|
||
|
android:id="@+id/download_free_txt"
|
||
|
android:textSize="12sp"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
tools:text="Free • 30.58GB"
|
||
|
android:textColor="?attr/textColor"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"/>
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|
||
|
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
android:layout_margin="10dp"
|
||
|
android:id="@+id/download_list"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
</androidx.recyclerview.widget.RecyclerView>
|
||
|
<TextView
|
||
|
android:id="@+id/text_no_downloads"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="8dp"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:layout_marginEnd="8dp"
|
||
|
android:textAlignment="center"
|
||
|
android:textSize="20sp"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"/>
|
||
|
</LinearLayout>
|