<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2024 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<org.chromium.chrome.browser.tab_resumption.TabResumptionModuleView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/tab_resumption_module_layout"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/tab_resumption_module_margin_top"
android:layout_marginStart="@dimen/tab_resumption_module_margin_lateral"
android:layout_marginEnd="@dimen/tab_resumption_module_margin_lateral"
android:paddingTop="@dimen/tab_resumption_module_padding_top"
android:paddingBottom="@dimen/tab_resumption_module_padding_bottom"
android:paddingStart="@dimen/tab_resumption_module_padding_lateral"
android:paddingEnd="@dimen/tab_resumption_module_padding_lateral"
android:background="@drawable/home_surface_ui_background">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/tab_resumption_module_title_margin_bottom"
android:baselineAligned="false"
android:orientation="horizontal"
android:paddingLeft="@dimen/tab_resumption_module_tile_bleed"
android:paddingRight="@dimen/tab_resumption_module_tile_bleed">
<TextView
android:id="@+id/tab_resumption_title_description"
android:layout_width="wrap_content"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_gravity="start"
android:singleLine="true"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.TextAccentMediumThick.Secondary"
/>
<TextView
android:id="@+id/tab_resumption_see_more_link"
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_weight="0"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:singleLine="true"
android:text="@string/tab_resumption_module_see_more"
android:textAlignment="viewEnd"
android:textAppearance="@style/TextAppearance.TextAccentMediumThick.Link"
/>
</LinearLayout>
<org.chromium.chrome.browser.tab_resumption.TabResumptionTileContainerView
android:id="@+id/tab_resumption_module_tiles_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:baselineAligned="false"
android:orientation="vertical">
</org.chromium.chrome.browser.tab_resumption.TabResumptionTileContainerView>
</org.chromium.chrome.browser.tab_resumption.TabResumptionModuleView>