chromium/components/browser_ui/widget/android/java/res/layout/more_progress_button.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.
-->

<org.chromium.components.browser_ui.widget.MoreProgressButton
    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:focusable="false">
    <org.chromium.ui.widget.ButtonCompat
        style="@style/ListActionButton"
        android:id="@+id/action_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="@string/more"
        tools:text="@string/more" />

    <include
        android:id="@+id/progress_spinner"
        layout="@layout/indeterminate_progress_view" />

</org.chromium.components.browser_ui.widget.MoreProgressButton>