48 lines
2.2 KiB
XML
48 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:foreground="?android:attr/selectableItemBackground"
|
|
app:cardCornerRadius="@dimen/diy_my_build_add_radius"
|
|
app:cardElevation="0dp">
|
|
<ImageView
|
|
android:id="@+id/img_bg"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop"/>
|
|
<TextView
|
|
android:textSize="@dimen/diy_state"
|
|
android:textColor="@color/bg_white"
|
|
android:gravity="center_vertical"
|
|
android:id="@+id/tv_state"
|
|
android:background="@drawable/diy_bg_browse"
|
|
android:paddingLeft="@dimen/diy_state_left"
|
|
android:paddingRight="@dimen/diy_state_left"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/diy_state_top"
|
|
android:text="@string/diy_state"/>
|
|
<TextView
|
|
android:textSize="@dimen/diy_small"
|
|
android:textColor="@color/bg_white"
|
|
android:layout_gravity="bottom"
|
|
android:id="@+id/tv_programming_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/diy_number_left"
|
|
android:layout_marginTop="10px"
|
|
android:layout_marginBottom="@dimen/diy_desc_bottom"
|
|
android:text="@string/diy_action"/>
|
|
<ImageView
|
|
android:layout_gravity="right"
|
|
android:id="@+id/img_select"
|
|
android:background="@drawable/diy_select_delete"
|
|
android:layout_width="@dimen/diy_index_select_height"
|
|
android:layout_height="@dimen/diy_index_select_height"
|
|
android:layout_margin="@dimen/diy_index_select_height_left"/>
|
|
</androidx.cardview.widget.CardView>
|
|
</RelativeLayout>
|