chromium/chrome/browser/privacy_sandbox/android/java/res/layout/category_with_clickable_summary_preference.xml

<?xml version="1.0" encoding="utf-8"?><!--
Copyright 2022 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->

<!-- Layout for a PreferenceCategory that adds a summary below the title. -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingVertical="@dimen/custom_preference_category_paddingVertical"
    android:orientation="vertical"
    style="@style/PreferenceLayout">

    <TextView
        android:id="@android:id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="@dimen/custom_preference_category_title_marginBottom"
        android:textAppearance="@style/TextAppearance.TextMediumThick.Accent1" />

    <org.chromium.ui.widget.TextViewWithClickableSpans
        android:id="@android:id/summary"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        style="@style/PreferenceSummary" />

</LinearLayout>