2023-01-28 23:42:51 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-11-17 19:40:02 +05:30
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-01-28 23:42:51 +05:30
|
|
|
android:layout_width="match_parent"
|
2023-11-17 19:40:02 +05:30
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2023-01-28 23:42:51 +05:30
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/commentsRV"
|
|
|
|
android:layout_width="match_parent"
|
2023-11-28 00:53:58 +05:30
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
2023-06-24 23:27:00 +05:30
|
|
|
android:clipToPadding="false"
|
|
|
|
android:paddingVertical="15dp" />
|
2023-01-28 23:42:51 +05:30
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2023-11-17 19:40:02 +05:30
|
|
|
android:layout_marginTop="20dp"
|
2023-01-28 23:42:51 +05:30
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/errorTV"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginVertical="5dp"
|
|
|
|
android:text="@string/comments_disabled"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2023-11-17 19:40:02 +05:30
|
|
|
</LinearLayout>
|