52 lines
1.9 KiB
XML
52 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/item_image_text">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/box"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_centerHorizontal="true">
|
|
<ImageView
|
|
android:id="@+id/img"
|
|
android:layout_width="@dimen/dp_76"
|
|
android:layout_height="@dimen/dp_76"
|
|
android:scaleType="fitXY"/>
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_marginTop="@dimen/dp_2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="个人信息"
|
|
android:textColor="#8AA5E1"
|
|
android:textSize="@dimen/sp_12"
|
|
android:layout_gravity="center"
|
|
/>
|
|
</LinearLayout>
|
|
<androidx.cardview.widget.CardView
|
|
android:id="@+id/card_order"
|
|
android:layout_marginTop="@dimen/dp_9"
|
|
android:layout_marginRight="@dimen/dp_m_20"
|
|
android:layout_alignRight="@+id/box"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:cardCornerRadius="@dimen/dp_10"
|
|
app:cardBackgroundColor="#e53935"
|
|
android:alpha="0.9"
|
|
android:visibility="gone"
|
|
>
|
|
<TextView
|
|
android:layout_marginLeft="@dimen/dp_5"
|
|
android:layout_marginRight="@dimen/dp_5"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="有新单!"
|
|
android:textColor="#ffffffff"
|
|
android:textSize="@dimen/sp_10"
|
|
/>
|
|
</androidx.cardview.widget.CardView>
|
|
</RelativeLayout> |