component_tabhistory.xml (1413B)
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 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" > 12 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="@drawable/bottom_sheet_handle_background" 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" /> 23 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>