2019-03-21 19:41:41 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
2019-07-15 22:01:37 +00:00
|
|
|
<FrameLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-08-01 15:58:41 +00:00
|
|
|
android:id="@+id/bookmarks_wrapper"
|
2019-07-15 22:01:37 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2019-04-04 20:40:39 +00:00
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2019-07-15 22:01:37 +00:00
|
|
|
android:id="@+id/bookmark_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2019-08-01 15:58:41 +00:00
|
|
|
tools:listitem="@layout/library_site_item" />
|
2019-04-04 20:40:39 +00:00
|
|
|
|
|
|
|
<TextView
|
2019-07-15 22:01:37 +00:00
|
|
|
android:id="@+id/bookmarks_empty_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2020-02-21 18:46:33 +00:00
|
|
|
android:layout_marginTop="8dp"
|
2019-07-15 22:01:37 +00:00
|
|
|
android:text="@string/bookmarks_empty_message"
|
|
|
|
android:textColor="?secondaryText"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2019-09-25 00:29:59 +00:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/bookmarks_progress_bar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center" />
|
|
|
|
|
2019-04-04 20:40:39 +00:00
|
|
|
</FrameLayout>
|