23 lines
No EOL
847 B
XML
23 lines
No EOL
847 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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp"
|
|
android:layout_margin="8dp"
|
|
app:cardCornerRadius="16dp"
|
|
app:cardElevation="0dp"
|
|
app:contentPadding="8dp">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/subtitleTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginStart="8dp"
|
|
android:fontFamily="@font/poppins_bold"
|
|
android:maxLines="1"
|
|
android:textSize="16sp"
|
|
tools:text="English" />
|
|
</androidx.cardview.widget.CardView> |