audiomanv3/app/src/main/res/layout/recycler_view_items.xml

22 lines
772 B
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/cardview1"
android:layout_width="match_parent"
android:layout_height="150dp"
card_view:cardCornerRadius="5dp"
card_view:cardUseCompatPadding="true">
<TextView
android:id="@+id/recordTextView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textSize="20sp"
android:textStyle="bold"
android:textColor="#000"
android:padding="10dp"
android:layout_gravity="center"
android:gravity="center" />
</androidx.cardview.widget.CardView>