Teraplex/app/src/main/res/layout/row_cricketer.xml
2021-05-23 21:03:21 +02:00

35 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
app:cardBackgroundColor="@color/white"
android:layout_margin="5dp">
<LinearLayout
android:padding="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/text_cricketer_name"
android:layout_marginLeft="5dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Cricketer Name"
android:textSize="18sp"
android:textColor="@color/black"></TextView>
<TextView
android:id="@+id/text_team_name"
android:layout_marginLeft="5dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Team Name"
android:textSize="14sp"
android:textColor="@color/black"></TextView>
</LinearLayout>
</androidx.cardview.widget.CardView>