[fenix] For https://github.com/mozilla-mobile/fenix/issues/24252 - Rename primaryText...
[gecko.git] / mobile / android / fenix / app / src / main / res / layout / history_list_item.xml
blobeca6647f374e96f825c0aa4fcc47394d47284726
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3    - License, v. 2.0. If a copy of the MPL was not distributed with this
4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
5 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
6     xmlns:tools="http://schemas.android.com/tools"
7     android:layout_width="match_parent"
8     android:layout_height="wrap_content"
9     android:importantForAccessibility="no"
10     android:orientation="vertical">
12     <include
13         android:id="@+id/recently_closed_nav_empty"
14         layout="@layout/recently_closed_nav_item" />
16     <TextView
17         android:id="@+id/header_title"
18         android:layout_width="wrap_content"
19         android:layout_height="wrap_content"
20         android:layout_marginBottom="8dp"
21         android:fontFamily="@font/metropolis_semibold"
22         android:paddingStart="20dp"
23         android:paddingEnd="0dp"
24         android:textColor="?attr/textPrimary"
25         android:textSize="14sp"
26         android:visibility="gone"
27         tools:text="Header" />
29     <org.mozilla.fenix.library.LibrarySiteItemView
30         android:id="@+id/history_layout"
31         android:layout_width="match_parent"
32         android:layout_height="wrap_content"
33         android:minHeight="@dimen/library_item_height" />
34 </LinearLayout>