chromium/components/translate/content/android/java/res/layout/translate_menu_item_checked.xml

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2017 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"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    xmlns:tools="http://schemas.android.com/tools"
    tools:ignore="UnusedResources">

    <LinearLayout
        style="@style/AppMenuItem"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:ignore="UseCompoundDrawables">

        <TextView
            android:id="@+id/menu_item_text"
            android:textAppearance="?android:attr/textAppearanceLargePopupMenu"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:layout_gravity="start"
            android:gravity="center_vertical"
            android:paddingTop="13dp"
            android:paddingBottom="13dp"
            android:paddingEnd="16dp" />
        <org.chromium.ui.widget.ChromeImageView
            android:id="@+id/menu_item_icon"
            android:src="@drawable/ic_check_googblue_24dp"
            android:layout_width="24dp"
            android:layout_height="match_parent"
            android:layout_gravity="end"
            android:gravity="center_vertical"
            app:tint="@color/default_icon_color_tint_list"
            android:importantForAccessibility="yes"
            android:contentDescription="@string/translate_menu_item_enabled" />

    </LinearLayout>

    <View
        android:id="@+id/menu_item_divider"
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="@macro/divider_line_bg_color"
        android:visibility="gone" />

</LinearLayout>