Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?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"
- app:cardCornerRadius="3dp"
- android:elevation="3dp"
- app:cardUseCompatPadding="true"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <RelativeLayout
- android:padding="16dp"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <ImageView
- android:src="@mipmap/ic_launcher"
- android:id="@+id/imageIv"
- android:layout_width="75dp"
- android:layout_height="75dp"/>
- <TextView
- android:layout_marginStart="10dp"
- android:layout_toEndOf="@+id/imageIv"
- android:layout_marginLeft="10dp"
- android:layout_toRightOf="@+id/imageIv"
- android:textStyle="bold"
- android:textColor="#000"
- android:textSize="18sp"
- android:id="@+id/titleTv"
- android:text="Title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <TextView
- android:minLines="1"
- android:maxLines="2"
- android:ellipsize="end"
- android:id="@+id/descriptionTv"
- android:textSize="14sp"
- android:layout_toEndOf="@+id/imageIv"
- android:textColor="#a9a9a9"
- android:layout_marginTop="5dp"
- android:layout_marginLeft="10dp"
- android:layout_marginStart="10dp"
- android:text="Description"
- android:layout_toRightOf="@+id/imageIv"
- android:layout_below="@+id/titleTv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- </RelativeLayout>
- </androidx.cardview.widget.CardView>
Advertisement
Add Comment
Please, Sign In to add comment