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

76 lines
2.9 KiB
XML
Raw Normal View History

2021-12-09 18:25:32 +05:30
<?xml version="1.0" encoding="utf-8"?>
2022-04-16 23:46:43 +05:30
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
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"
tools:context=".Library">
<RelativeLayout
2022-04-12 23:55:08 +05:30
android:id="@+id/loginOrRegister2"
2021-12-09 18:25:32 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
2022-04-12 23:55:08 +05:30
android:layout_centerVertical="true">
<ImageView
2022-04-12 23:55:08 +05:30
android:id="@+id/boogh2"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerInParent="true"
android:layout_marginBottom="16dp"
2022-04-12 23:55:08 +05:30
android:src="@drawable/ic_login" />
<TextView
2022-04-12 23:55:08 +05:30
android:id="@+id/textLike2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2022-04-12 23:55:08 +05:30
android:layout_below="@id/boogh2"
android:layout_centerHorizontal="true"
2022-04-12 23:55:08 +05:30
android:gravity="center"
android:text="@string/please_login"
android:textSize="20sp"
2022-04-12 23:55:08 +05:30
android:textStyle="bold" />
</RelativeLayout>
2021-12-09 18:25:32 +05:30
2022-04-12 23:55:08 +05:30
<com.github.libretube.CustomSwipeToRefresh
android:id="@+id/playlist_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:id="@+id/scrollview_playlist"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
2022-04-15 16:56:06 +05:30
android:layout_height="match_parent"
2022-04-12 23:55:08 +05:30
android:orientation="vertical">
2022-05-01 23:26:09 +05:30
2022-04-15 16:56:06 +05:30
<Button
android:id="@+id/create_playlist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/createPlaylist"
android:layout_gravity="center"
android:layout_margin="8dp"
2022-05-23 01:35:11 +05:30
android:textColor="?attr/colorSurface"
android:drawableLeft="@drawable/ic_add" />
2022-04-12 23:55:08 +05:30
<RelativeLayout
android:layout_width="match_parent"
2022-04-15 16:56:06 +05:30
android:layout_height="match_parent"
2022-04-12 23:55:08 +05:30
android:descendantFocusability="blocksDescendants">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/playlist_recView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:nestedScrollingEnabled="false" />
</RelativeLayout>
</LinearLayout>
</ScrollView>
</com.github.libretube.CustomSwipeToRefresh>
2021-12-09 18:25:32 +05:30
</FrameLayout>