chromium/android_webview/nonembedded/java/res_devui/layout/two_line_list_item.xml

<?xml version="1.0" encoding="utf-8"?>
<!--
  Copyright 2019 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"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingTop="2dp"
    android:paddingBottom="2dp"
    android:paddingStart="?android:attr/listPreferredItemPaddingStart"
    android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
    android:mode="twoLine"
    android:orientation="vertical">

    <TextView android:id="@android:id/text1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textStyle="bold"
        android:textAlignment="viewStart"
        android:paddingTop="4dp"
        android:paddingBottom="4dp"/>

    <TextView android:id="@android:id/text2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:textAlignment="viewStart"
        android:paddingTop="4dp"
        android:paddingBottom="4dp"/>

</LinearLayout>