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

90 lines
3.3 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"
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-06-03 00:40:16 +05:30
<com.github.libretube.util.CustomSwipeToRefresh
2022-04-12 23:55:08 +05:30
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-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>
2022-06-03 00:40:16 +05:30
</com.github.libretube.util.CustomSwipeToRefresh>
2022-06-02 21:37:09 +05:30
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom">
<com.google.android.material.button.MaterialButton
android:layout_gravity="right"
android:id="@+id/create_playlist"
android:layout_marginBottom="15dp"
android:layout_marginRight="15dp"
android:layout_width="50dp"
android:layout_height="50dp"
android:insetLeft="0dp"
android:insetTop="0dp"
android:insetRight="0dp"
android:insetBottom="0dp"
app:cornerRadius="16dp"
app:icon="@drawable/ic_add"
android:backgroundTint="?attr/colorSecondary"
app:iconGravity="textStart"
app:iconPadding="0dp" />
</FrameLayout>
2021-12-09 18:25:32 +05:30
</FrameLayout>