Files
OcheCompanion/app/src/main/res/layout/item_player_small.xml
Alexander Doerflinger a4a42fc73f Initial Commit
2026-01-28 12:33:38 +01:00

55 lines
2.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
tools:parentTag="com.google.android.material.card.MaterialCardView">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal"
android:padding="16dp">
<com.google.android.material.imageview.ShapeableImageView
android:id="@+id/ivPlayerProfile"
android:layout_width="56dp"
android:layout_height="56dp"
android:background="@color/surface_secondary"
app:shapeAppearanceOverlay="@style/ShapeAppearance.MaterialComponents.SmallComponent"
app:strokeColor="@color/border_subtle"
app:strokeWidth="1dp" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:id="@+id/tvPlayerName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="@style/TextAppearance.MaterialComponents.Subtitle1"
android:textColor="@color/text_primary"
android:textStyle="bold"
tools:text="Snakebite" />
<TextView
android:id="@+id/tvPlayerAvg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="@style/TextAppearance.Oche.Caption"
tools:text="AVG: 94.2" />
</LinearLayout>
<ImageView
android:id="@+id/ivChevron"
android:layout_width="24dp"
android:layout_height="24dp"
android:src="@drawable/ic_chevron_right"
app:tint="@color/text_dim" />
</LinearLayout>
</merge>