jimu-decompiled/resources/res/layout/recycler_item_robot.xml
2025-05-13 19:24:51 +02:00

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="50dp"
android:layout_height="50dp">
<View
android:id="@+id/bottomView"
android:background="@drawable/bg_ranking_10"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_alignParentBottom="true"/>
<androidx.cardview.widget.CardView
android:id="@+id/robotCardView"
android:padding="@dimen/dp_5"
android:clickable="true"
android:layout_width="48dp"
android:layout_height="48dp"
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="5dp"
android:clickable="true"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</androidx.cardview.widget.CardView>
</RelativeLayout>
</FrameLayout>