<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout android:id="@id/add_mentions_button_container" android:background="@drawable/post_creation_mention_button_background" android:paddingTop="@dimen/post_creation_mention_button_padding" android:paddingBottom="@dimen/post_creation_mention_button_padding" android:layout_width="wrap_content" android:layout_height="wrap_content"
  xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
    <ImageView android:id="@id/mention_button_icon" android:layout_width="@dimen/post_creation_mention_button_icon_size" android:layout_height="@dimen/post_creation_mention_button_icon_size" android:layout_marginTop="@dimen/post_creation_mention_button_icon_margin" android:layout_marginBottom="@dimen/post_creation_mention_button_icon_margin" android:src="@drawable/yt_outline_mention_vd_theme_16" android:tint="?ytTextPrimary" android:contentDescription="@string/mention_button_icon_description" android:layout_marginStart="@dimen/post_creation_mention_button_icon_margin_start" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" />
    <com.google.android.libraries.youtube.common.ui.YouTubeTextView android:textAppearance="?ytTextAppearanceBody2b" android:textSize="@dimen/post_creation_mention_button_title_text_size" android:ellipsize="end" android:gravity="center_vertical" android:id="@id/mentions_button_title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="@dimen/post_creation_mention_button_title_margin_top" android:layout_marginBottom="@dimen/post_creation_mention_button_title_margin_bottom" android:maxWidth="@dimen/post_creation_mention_button_title_max_width" android:text="@string/attach_mention_button_text" android:scrollHorizontally="true" android:singleLine="true" android:layout_marginStart="@dimen/post_creation_mention_button_title_margin_start" android:layout_marginEnd="@dimen/post_creation_mention_button_title_margin_end" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="@dimen/post_creation_mention_button_title_layout_constraintHorizontal_bias" app:layout_constraintStart_toEndOf="@id/mention_button_icon" app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
