chromium/chrome/browser/history/java/res/layout/appfilter_header.xml

<?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.
-->
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="@dimen/min_touch_target_size"
    android:orientation="vertical"
    tools:ignore="UseCompoundDrawables">
    <ImageView
        android:id="@+id/drag_handlebar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="8dp"
        android:importantForAccessibility="no"
        android:src="@drawable/drag_handlebar" />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:minHeight="44dp"
        android:layout_marginStart="@dimen/list_item_default_margin"
        android:gravity="center_vertical"
        android:textDirection="locale"
        android:text="@string/history_filter_by_app"
        style="@style/TextAppearance.TextAccentMediumThick.Primary" />
</LinearLayout>