21 lines
922 B
XML
21 lines
922 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"
|
|
android:id="@+id/cv_comm_banner"
|
|
android:clickable="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:foreground="?android:attr/selectableItemBackground"
|
|
app:cardCornerRadius="10dp">
|
|
<com.youth.banner.Banner
|
|
android:id="@+id/banner"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/community_img"
|
|
android:scaleType="centerInside"
|
|
app:indicator_drawable_selected="@drawable/dot_select"
|
|
app:indicator_height="10dp"
|
|
app:indicator_width="10dp"
|
|
app:title_height="40dp"
|
|
app:title_textsize="@dimen/txt_content_5"/>
|
|
</androidx.cardview.widget.CardView>
|