18 lines
702 B
XML
18 lines
702 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="300dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_margin="8dp">
|
|
<ImageView
|
|
android:id="@+id/imgCourseLogo"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerInside"/>
|
|
<TextView
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:id="@+id/tvCourseName"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="课程名称"/>
|
|
</androidx.cardview.widget.CardView>
|