[fenix] For https://github.com/mozilla-mobile/fenix/issues/19273 - Ensure a new line...
[gecko.git] / mobile / android / fenix / app / src / main / res / layout / component_tabhistory.xml
blobf01a2efcf35b8458e5a1361c832dcf73ffc7f07c
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/. -->
6 <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
7     xmlns:app="http://schemas.android.com/apk/res-auto"
8     xmlns:tools="http://schemas.android.com/tools"
9     android:id="@+id/tabHistoryWrapper"
10     android:layout_width="match_parent"
11     android:layout_height="match_parent" >
13     <View
14         android:id="@+id/handle"
15         android:layout_width="0dp"
16         android:layout_height="@dimen/bottom_sheet_handle_height"
17         android:layout_marginTop="@dimen/bottom_sheet_handle_top_margin"
18         android:background="@color/secondary_text_normal_theme"
19         app:layout_constraintEnd_toEndOf="parent"
20         app:layout_constraintStart_toStartOf="parent"
21         app:layout_constraintTop_toTopOf="parent"
22         app:layout_constraintWidth_percent="0.1" />
24     <androidx.recyclerview.widget.RecyclerView
25         android:id="@+id/tabHistoryRecyclerView"
26         android:layout_width="match_parent"
27         android:layout_height="match_parent"
28         android:paddingTop="19dp"
29         tools:listitem="@layout/history_list_item" />
30 </androidx.constraintlayout.widget.ConstraintLayout>