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

128 lines
5.1 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-07-02 20:00:47 +05:30
<RelativeLayout
2022-08-08 18:52:08 +05:30
android:id="@+id/loginOrRegister"
2022-07-01 21:59:47 +05:30
android:layout_width="match_parent"
2022-07-08 17:49:29 +05:30
android:layout_height="match_parent">
2022-07-02 20:00:47 +05:30
<ImageView
android:id="@+id/boogh"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerInParent="true"
android:layout_marginBottom="16dp"
android:src="@drawable/ic_login" />
<TextView
android:id="@+id/text_like"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2022-07-02 20:00:47 +05:30
android:layout_below="@id/boogh"
android:layout_centerHorizontal="true"
2022-07-08 22:20:11 +05:30
android:layout_marginHorizontal="10dp"
2022-07-02 20:00:47 +05:30
android:gravity="center"
android:text="@string/please_login"
android:textSize="20sp"
android:textStyle="bold" />
</RelativeLayout>
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"
android:layout_height="match_parent">
<ScrollView
android:id="@+id/scrollview_playlist"
2022-04-12 23:55:08 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent">
2022-07-02 20:00:47 +05:30
<LinearLayout
2022-04-12 23:55:08 +05:30
android:layout_width="match_parent"
2022-07-08 17:49:29 +05:30
android:layout_height="wrap_content"
2022-07-02 20:00:47 +05:30
android:orientation="vertical">
2022-05-01 23:26:09 +05:30
2022-07-02 01:02:26 +05:30
<LinearLayout
2022-07-02 20:00:47 +05:30
android:id="@+id/showWatchHistory"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:background="?attr/selectableItemBackground"
android:orientation="horizontal"
android:padding="10dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
2022-07-08 17:49:29 +05:30
android:layout_marginStart="10dp"
2022-07-02 20:00:47 +05:30
android:src="@drawable/ic_time_outlined" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2022-07-08 17:49:29 +05:30
android:layout_marginStart="15dp"
2022-07-02 20:00:47 +05:30
android:text="@string/watch_history"
android:textSize="18sp"
android:textStyle="bold" />
</LinearLayout>
2022-09-09 17:53:39 +05:30
<LinearLayout
android:id="@+id/downloads"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:background="?attr/selectableItemBackground"
android:orientation="horizontal"
android:padding="10dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginStart="10dp"
android:src="@drawable/ic_download" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="15dp"
android:text="@string/downloads"
android:textSize="18sp"
android:textStyle="bold" />
</LinearLayout>
2022-07-02 20:00:47 +05:30
<RelativeLayout
2022-04-12 23:55:08 +05:30
android:layout_width="match_parent"
2022-04-15 16:56:06 +05:30
android:layout_height="match_parent"
2022-07-02 20:00:47 +05:30
android:descendantFocusability="blocksDescendants">
2022-04-12 23:55:08 +05:30
2022-07-02 20:00:47 +05:30
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/playlist_recView"
2022-04-12 23:55:08 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
2022-07-02 20:00:47 +05:30
android:nestedScrollingEnabled="false" />
2022-06-02 21:37:09 +05:30
2022-07-02 20:00:47 +05:30
</RelativeLayout>
</LinearLayout>
</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>