46 lines
1.7 KiB
XML
46 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!-- START*** Root Container *** -->
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
card_view:cardCornerRadius="0dp"
|
|
card_view:cardElevation="0dp"
|
|
card_view:cardUseCompatPadding="true">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="12dp">
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="6dp"
|
|
android:layout_marginEnd="24dp"
|
|
android:paddingTop="0dp"
|
|
android:textAppearance="@style/Base.TextAppearance.AppCompat.Headline" />
|
|
|
|
<TextView
|
|
android:id="@+id/host"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="6dp"
|
|
android:layout_marginEnd="24dp"
|
|
android:paddingTop="0dp"
|
|
android:textAppearance="@style/Base.TextAppearance.AppCompat.Subhead" />
|
|
<TextView
|
|
android:id="@+id/shortDescription"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="6dp"
|
|
android:layout_marginEnd="24dp"
|
|
android:paddingTop="0dp"
|
|
android:textAppearance="@style/Base.TextAppearance.AppCompat.Subhead" />
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|