17 lines
616 B
XML
17 lines
616 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
app:cardCornerRadius="4dp">
|
|
|
|
<TextView
|
|
android:id="@+id/textViewName"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="16dp"
|
|
android:text="Workout Name"
|
|
android:textSize="18sp" />
|
|
|
|
</androidx.cardview.widget.CardView> |