summaryrefslogtreecommitdiffstats
path: root/mobile/android/fenix/app/src/main/res/layout/history_list_item.xml
diff options
context:
space:
mode:
Diffstat (limited to 'mobile/android/fenix/app/src/main/res/layout/history_list_item.xml')
-rw-r--r--mobile/android/fenix/app/src/main/res/layout/history_list_item.xml46
1 files changed, 46 insertions, 0 deletions
diff --git a/mobile/android/fenix/app/src/main/res/layout/history_list_item.xml b/mobile/android/fenix/app/src/main/res/layout/history_list_item.xml
new file mode 100644
index 0000000000..3a8827dc8d
--- /dev/null
+++ b/mobile/android/fenix/app/src/main/res/layout/history_list_item.xml
@@ -0,0 +1,46 @@
+<?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/. -->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:importantForAccessibility="no"
+ android:orientation="vertical">
+
+ <View
+ android:id="@+id/top_spacer"
+ android:layout_width="match_parent"
+ android:layout_height="8dp"
+ android:visibility="gone"/>
+
+ <include
+ android:id="@+id/recently_closed_nav_empty"
+ layout="@layout/recently_closed_nav_item" />
+
+ <View
+ android:id="@+id/bottom_spacer"
+ android:layout_width="match_parent"
+ android:layout_height="32dp"
+ android:visibility="gone"/>
+
+ <TextView
+ android:id="@+id/header_title"
+ style="@style/Header14TextStyle"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="8dp"
+ android:layout_marginStart="16dp"
+ android:layout_marginEnd="0dp"
+ android:textColor="?attr/textPrimary"
+ android:visibility="gone"
+ tools:text="Header" />
+
+ <org.mozilla.fenix.library.LibrarySiteItemView
+ android:id="@+id/history_layout"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:minHeight="@dimen/library_item_height" />
+</LinearLayout>