39 lines
1.6 KiB
XML
39 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/itemCardView"
|
|
android:padding="2dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="@dimen/dp_5">
|
|
<RelativeLayout
|
|
android:layout_gravity="center"
|
|
android:id="@+id/robotImageParent"
|
|
android:layout_width="94dp"
|
|
android:layout_height="98dp">
|
|
<View
|
|
android:id="@+id/bottomView"
|
|
android:background="@drawable/bg_ranking_10"
|
|
android:layout_width="94dp"
|
|
android:layout_height="94dp"
|
|
android:layout_alignParentBottom="true"/>
|
|
<androidx.cardview.widget.CardView
|
|
android:id="@+id/robotCardView"
|
|
android:padding="@dimen/dp_10"
|
|
android:clickable="true"
|
|
android:layout_width="94dp"
|
|
android:layout_height="94dp"
|
|
android:foreground="?android:attr/selectableItemBackground"
|
|
android:layout_alignParentTop="true"
|
|
app:cardCornerRadius="@dimen/dp10"
|
|
app:cardElevation="0dp">
|
|
<ImageView
|
|
android:id="@+id/robotImageView"
|
|
android:background="#ffffff"
|
|
android:padding="@dimen/dp_5"
|
|
android:clickable="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
</androidx.cardview.widget.CardView>
|
|
</RelativeLayout>
|
|
</FrameLayout>
|