2018-09-23 03:32:19 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-09 20:24:02 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-09-23 03:32:19 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2019-03-03 13:50:15 +01:00
|
|
|
android:layout_height="match_parent">
|
2018-09-23 03:32:19 +02:00
|
|
|
|
2019-09-30 07:02:07 +02:00
|
|
|
<org.schabi.newpipe.views.NewPipeRecyclerView
|
2018-09-23 03:32:19 +02:00
|
|
|
android:id="@+id/items_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scrollbars="vertical"
|
2023-04-11 10:47:40 +02:00
|
|
|
tools:listitem="@layout/list_comment_item" />
|
2018-09-23 03:32:19 +02:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/loading_progress_bar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:indeterminate="true"
|
|
|
|
android:visibility="gone"
|
2020-10-09 20:24:02 +02:00
|
|
|
tools:visibility="visible" />
|
2018-09-23 03:32:19 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/empty_state_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-02 17:09:16 +02:00
|
|
|
android:layout_centerHorizontal="true"
|
2018-09-23 03:32:19 +02:00
|
|
|
android:orientation="vertical"
|
2019-02-23 21:51:11 +01:00
|
|
|
android:paddingTop="85dp"
|
2018-09-23 03:32:19 +02:00
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
2021-09-04 19:32:38 +02:00
|
|
|
<org.schabi.newpipe.views.NewPipeTextView
|
2018-09-23 03:32:19 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:fontFamily="monospace"
|
|
|
|
android:text="(╯°-°)╯"
|
|
|
|
android:textSize="35sp"
|
2020-10-09 20:24:02 +02:00
|
|
|
tools:ignore="HardcodedText,UnusedAttribute" />
|
2018-09-23 03:32:19 +02:00
|
|
|
|
2021-09-04 19:32:38 +02:00
|
|
|
<org.schabi.newpipe.views.NewPipeTextView
|
2021-06-19 15:03:20 +02:00
|
|
|
android:id="@+id/empty_state_desc"
|
2018-09-23 03:32:19 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2018-09-24 11:23:43 +02:00
|
|
|
android:text="@string/empty_view_no_comments"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:textSize="24sp" />
|
2018-09-23 03:32:19 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<!--ERROR PANEL-->
|
|
|
|
<include
|
|
|
|
android:id="@+id/error_panel"
|
2020-12-11 14:55:47 +01:00
|
|
|
layout="@layout/error_panel"
|
2018-09-23 03:32:19 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-12-11 14:55:47 +01:00
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_marginTop="16dp"
|
2018-09-23 03:32:19 +02:00
|
|
|
android:visibility="gone"
|
2020-10-09 20:24:02 +02:00
|
|
|
tools:visibility="visible" />
|
2018-09-23 03:32:19 +02:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="4dp"
|
2018-10-16 20:53:02 +02:00
|
|
|
android:layout_alignParentTop="true"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:background="?attr/toolbar_shadow"
|
|
|
|
android:visibility="gone" />
|
2018-09-23 03:32:19 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|