LibreTube/app/src/main/res/layout/fragment_library.xml

168 lines
7.5 KiB
XML
Raw Normal View History

2021-12-09 18:25:32 +05:30
<?xml version="1.0" encoding="utf-8"?>
2022-06-02 21:37:09 +05:30
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2022-04-16 23:46:43 +05:30
xmlns:app="http://schemas.android.com/apk/res-auto"
2021-12-09 18:25:32 +05:30
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
2022-09-20 23:23:34 +05:30
tools:context=".ui.fragments.LibraryFragment">
2021-12-09 18:25:32 +05:30
2022-09-20 23:23:34 +05:30
<com.github.libretube.ui.views.CustomSwipeToRefresh
2022-07-02 20:00:47 +05:30
android:id="@+id/playlist_refresh"
android:layout_width="match_parent"
2022-12-06 00:30:22 +05:30
android:layout_height="match_parent"
android:layout_margin="10dp">
2022-07-02 20:00:47 +05:30
2023-01-03 23:01:16 +05:30
<ScrollView
2022-04-12 23:55:08 +05:30
android:layout_width="match_parent"
2022-12-06 00:30:22 +05:30
android:layout_height="match_parent"
2023-01-03 23:01:16 +05:30
android:orientation="vertical" >
2022-04-12 23:55:08 +05:30
2023-01-03 23:01:16 +05:30
<LinearLayout
2022-04-12 23:55:08 +05:30
android:layout_width="match_parent"
2023-01-03 23:01:16 +05:30
android:layout_height="wrap_content"
android:orientation="vertical">
2022-05-01 23:26:09 +05:30
2023-01-03 23:01:16 +05:30
<com.google.android.material.card.MaterialCardView
style="@style/Widget.Material3.CardView.Elevated"
2022-09-09 17:53:39 +05:30
android:layout_width="match_parent"
2023-01-03 23:01:16 +05:30
android:layout_height="wrap_content">
2022-12-06 00:30:22 +05:30
2023-01-03 23:01:16 +05:30
<LinearLayout
2022-12-06 00:30:22 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2023-01-03 23:01:16 +05:30
android:orientation="vertical">
2022-12-06 00:30:22 +05:30
2023-01-03 23:01:16 +05:30
<TextView
android:id="@+id/watch_history"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/selectableItemBackground"
android:drawablePadding="10dp"
android:paddingHorizontal="15dp"
android:paddingVertical="12dp"
android:text="@string/watch_history"
android:textSize="18sp"
android:textStyle="bold"
app:drawableStartCompat="@drawable/ic_time_outlined" />
2022-12-06 00:30:22 +05:30
2023-01-03 23:01:16 +05:30
<TextView
android:id="@+id/downloads"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/selectableItemBackground"
android:drawablePadding="10dp"
android:paddingHorizontal="15dp"
android:paddingVertical="12dp"
android:text="@string/downloads"
android:textSize="18sp"
android:textStyle="bold"
app:drawableStartCompat="@drawable/ic_download" />
2022-12-06 00:30:22 +05:30
2023-01-03 23:01:16 +05:30
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
2022-12-06 00:30:22 +05:30
2023-01-03 23:01:16 +05:30
<com.google.android.material.card.MaterialCardView
style="@style/Widget.Material3.CardView.Elevated"
2022-04-12 23:55:08 +05:30
android:layout_width="match_parent"
2023-01-03 23:01:16 +05:30
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_marginBottom="10dp"
android:layout_weight="1">
2022-12-06 00:30:22 +05:30
2023-01-03 23:01:16 +05:30
<LinearLayout
2022-12-06 00:30:22 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2023-01-03 23:01:16 +05:30
android:orientation="vertical"
android:padding="10dp">
2022-12-06 00:30:22 +05:30
<TextView
2023-01-03 23:01:16 +05:30
android:layout_width="match_parent"
2022-12-06 00:30:22 +05:30
android:layout_height="wrap_content"
2023-01-03 23:01:16 +05:30
android:text="@string/playlists"
android:padding="8dp"
android:textSize="18sp"
2022-12-06 00:30:22 +05:30
android:textStyle="bold" />
2022-04-12 23:55:08 +05:30
2023-01-03 23:01:16 +05:30
<RelativeLayout
android:id="@+id/nothing_here"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone">
<ImageView
android:id="@+id/listIV"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerInParent="true"
android:src="@drawable/ic_list" />
<TextView
android:id="@+id/text_like"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/listIV"
android:layout_centerHorizontal="true"
android:gravity="center"
android:text="@string/emptyList"
android:textSize="20sp"
android:textStyle="bold" />
</RelativeLayout>
2022-12-06 00:30:22 +05:30
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/playlist_recView"
android:layout_width="match_parent"
2023-01-03 23:01:16 +05:30
android:layout_height="wrap_content" />
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
<com.google.android.material.card.MaterialCardView
android:id="@+id/bookmarksCV"
style="@style/Widget.Material3.CardView.Elevated"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_weight="1"
android:visibility="gone">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/bookmarks"
android:textSize="18sp"
android:padding="8dp"
android:textStyle="bold" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/bookmarks_recView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
2022-12-06 00:30:22 +05:30
2023-01-03 23:01:16 +05:30
</LinearLayout>
2022-12-06 00:30:22 +05:30
2023-01-03 23:01:16 +05:30
</com.google.android.material.card.MaterialCardView>
</LinearLayout>
2022-06-02 21:37:09 +05:30
2023-01-03 23:01:16 +05:30
</ScrollView>
2022-09-20 23:23:34 +05:30
</com.github.libretube.ui.views.CustomSwipeToRefresh>
2022-07-01 21:59:47 +05:30
2022-06-04 11:46:54 +05:30
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/create_playlist"
android:layout_width="wrap_content"
2022-06-02 21:37:09 +05:30
android:layout_height="wrap_content"
2022-06-04 11:46:54 +05:30
android:layout_gravity="bottom|end"
android:layout_margin="16dp"
app:backgroundTint="?attr/colorSecondary"
2022-06-27 22:47:52 +05:30
app:srcCompat="@drawable/ic_add"
app:tint="?android:attr/colorBackground" />
2022-06-02 21:37:09 +05:30
2021-12-09 18:25:32 +05:30
</FrameLayout>