<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2023 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<View
android:layout_width="16dp"
android:layout_height="match_parent" />
<!-- Common title/description shared between list item views. -->
<include layout="@layout/title_and_description_layout" />
<View
android:layout_width="16dp"
android:layout_height="match_parent" />
<!-- Always use a disabled color because no click handler will be attached. -->
<ImageView
android:id="@+id/local_bookmark_image"
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginEnd="4dp"
android:layout_gravity="end"
android:src="@drawable/ic_cloud_off_24dp"
app:tint="@color/default_icon_color_disabled"
android:scaleType="center"
android:focusable="false"
android:contentDescription="@string/local_bookmarks_section_header" />
<org.chromium.ui.listmenu.ListMenuButton
android:id="@+id/more"
android:visibility="gone"
android:layout_width="@dimen/min_touch_target_size"
android:layout_height="match_parent"
android:layout_gravity="end"
android:background="@null"
android:src="@drawable/ic_more_vert_24dp"
app:tint="@color/default_icon_color_tint_list"
android:importantForAccessibility="no" />
<ImageView
android:id="@+id/check_image"
android:visibility="gone"
android:layout_width="@dimen/min_touch_target_size"
android:layout_height="match_parent"
android:layout_gravity="end"
android:src="@drawable/material_ic_check_circle_filled_24dp"
app:tint="@macro/default_icon_color_accent1"
android:scaleType="center"
android:importantForAccessibility="no" />
<ImageView
android:id="@+id/end_image"
android:layout_width="@dimen/min_touch_target_size"
android:layout_height="match_parent"
android:layout_gravity="end"
android:scaleType="center"
android:importantForAccessibility="no"
android:focusable="false" />
</merge>