<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2025 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?android:attr/listChoiceBackgroundIndicator"
    android:orientation="horizontal"
    style="@style/ListMenuItemStyle">

    <CheckBox
        android:id="@+id/checkbox"
        android:clickable="false"
        style="@style/ListMenuItemIconStyle.Start" />

    <TextView
        android:id="@+id/checkbox_title"
        android:labelFor="@+id/checkbox"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:maxLines="1"
        android:ellipsize="end"
        style="@style/TextAppearance.DensityAdaptive.ListMenuItem"
        tools:ignore="LabelFor" /> <!-- Text will be set by ViewBinder -->

</LinearLayout>
