<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:clickable="true"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    <androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/layout_teams"
        android:padding="6dp"
        android:visibility="gone"
        android:layout_width="347dp"
        android:layout_height="218dp">
        <View
            android:id="@+id/bg_match"
            android:background="@drawable/bg_match"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>
        <androidx.constraintlayout.widget.Guideline
            android:orientation="vertical"
            android:id="@+id/guideline_center_vertical"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constraintGuide_percent="0.5"/>
        <ImageView
            android:id="@+id/iv_team_1"
            android:layout_width="94dp"
            android:layout_height="128dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toStartOf="@+id/guideline_center_vertical"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"/>
        <ImageView
            android:id="@+id/iv_team_2"
            android:layout_width="94dp"
            android:layout_height="128dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toEndOf="@+id/guideline_center_vertical"
            app:layout_constraintTop_toTopOf="parent"/>
    </androidx.constraintlayout.widget.ConstraintLayout>
    <TextView
        android:textSize="24sp"
        android:textColor="@color/white"
        android:ellipsize="marquee"
        android:gravity="center"
        android:id="@+id/tv_match_title"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="30dp"
        android:singleLine="true"
        app:layout_constraintEnd_toEndOf="@+id/layout_teams"
        app:layout_constraintStart_toStartOf="@+id/layout_teams"
        app:layout_constraintTop_toBottomOf="@+id/layout_teams"/>
    <TextView
        android:textSize="22sp"
        android:textColor="@color/black_9"
        android:ellipsize="marquee"
        android:gravity="center"
        android:id="@+id/tv_match_time"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:singleLine="true"
        app:layout_constraintEnd_toEndOf="@+id/layout_teams"
        app:layout_constraintStart_toStartOf="@+id/layout_teams"
        app:layout_constraintTop_toBottomOf="@+id/tv_match_title"/>
    <com.facebook.shimmer.ShimmerFrameLayout
        android:id="@+id/shimmer_sport_matches"
        android:layout_width="347dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="72dp"
        app:shimmer_auto_start="true"
        app:shimmer_base_color="@android:color/black"
        app:shimmer_duration="2000"
        app:shimmer_highlight_color="@android:color/white">
        <LinearLayout
            android:gravity="center_horizontal"
            android:orientation="vertical"
            android:paddingLeft="6dp"
            android:paddingTop="6dp"
            android:paddingRight="6dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingHorizontal="6dp">
            <xyz.stream.view.RoundImageView
                android:layout_width="335dp"
                android:layout_height="206dp"
                android:src="@color/black_3"
                app:riv_radius="20dp"/>
            <TextView
                android:background="@color/black_3"
                android:layout_width="300dp"
                android:layout_height="40dp"
                android:layout_marginTop="30dp"/>
            <TextView
                android:background="@color/black_3"
                android:layout_width="200dp"
                android:layout_height="30dp"
                android:layout_marginTop="10dp"/>
        </LinearLayout>
    </com.facebook.shimmer.ShimmerFrameLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
