chromium/components/browser_ui/widget/android/java/res/layout/material_switch_with_title_and_summary.xml

<!--
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.
-->
<merge xmlns:android="http://schemas.android.com/apk/res/android">
    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="vertical">

        <org.chromium.ui.widget.TextViewWithLeading
            android:id="@+id/titleText"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:focusable="false"
            android:textAppearance="@style/TextAppearance.TextLarge.Primary"/>

        <org.chromium.ui.widget.TextViewWithLeading
            android:id="@+id/summaryText"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:focusable="false"
            android:textAppearance="@style/TextAppearance.TextMedium.Secondary"/>
    </LinearLayout>

    <include layout="@layout/preference_switch"
        android:id="@+id/switch_widget"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="end"
        android:focusable="false" />
</merge>