1
0
Fork 0
fenix/app/src/main/res/layout/component_tabhistory.xml

32 lines
1.3 KiB
XML

<?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/. -->
<androidx.constraintlayout.widget.ConstraintLayout 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"
android:id="@+id/tabHistoryWrapper"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<View
android:id="@+id/handle"
android:layout_width="0dp"
android:layout_height="3dp"
android:layout_marginTop="8dp"
android:background="@color/secondary_text_normal_theme"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_percent="0.1" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/tabHistoryRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="19dp"
tools:listitem="@layout/history_list_item" />
</androidx.constraintlayout.widget.ConstraintLayout>