<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="horizontal"
    android:background="@drawable/bg_settings_card"
    android:paddingTop="12dp"
    android:paddingBottom="12dp"
    android:focusable="true"
    android:clickable="true"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="2dp"
    android:paddingStart="16dp"
    android:paddingEnd="12dp">
    <FrameLayout
        android:layout_width="44dp"
        android:layout_height="44dp"
        android:layout_marginEnd="12dp">
        <androidx.cardview.widget.CardView
            android:layout_gravity="center"
            android:layout_width="36dp"
            android:layout_height="36dp"
            app:cardBackgroundColor="#2a2a35"
            app:cardCornerRadius="6dp"
            app:cardElevation="0dp">
            <ImageView
                android:padding="8dp"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:src="@drawable/ic_add"
                android:scaleType="centerInside"
                android:tint="#71717a"
                android:contentDescription="@string/cd_add_profile"/>
        </androidx.cardview.widget.CardView>
    </FrameLayout>
    <LinearLayout
        android:layout_gravity="center_vertical"
        android:orientation="vertical"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1">
        <TextView
            android:textSize="15sp"
            android:textColor="@android:color/white"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/label_add_trakt_account"
            android:fontFamily="sans-serif-medium"/>
        <TextView
            android:textSize="11sp"
            android:textColor="#71717a"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/msg_link_trakt_profile"/>
    </LinearLayout>
</LinearLayout>
