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-07-01 14:41:24 +05:30
|
|
|
tools:context=".fragments.LibraryFragment">
|
2021-12-09 18:25:32 +05:30
|
|
|
|
2022-07-02 20:00:47 +05:30
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/loginOrRegister2"
|
2022-07-01 21:59:47 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2022-07-02 20:00:47 +05:30
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_centerVertical="true">
|
|
|
|
|
|
|
|
<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"
|
2022-01-28 22:40:32 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-07-02 20:00:47 +05:30
|
|
|
android:layout_below="@id/boogh"
|
2022-01-28 22:40:32 +05:30
|
|
|
android:layout_centerHorizontal="true"
|
2022-07-02 20:00:47 +05:30
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/please_login"
|
|
|
|
android:textSize="20sp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<com.github.libretube.util.CustomSwipeToRefresh
|
|
|
|
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-02 20:00:47 +05:30
|
|
|
android:layout_height="match_parent"
|
|
|
|
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"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:src="@drawable/ic_time_outlined" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:text="@string/watch_history"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
</com.github.libretube.util.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>
|