104 lines
3.8 KiB
XML
104 lines
3.8 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical"
|
||
|
|
>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:gravity="center_vertical"
|
||
|
|
android:layout_marginVertical="20dp" >
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:gravity="center_vertical" >
|
||
|
|
|
||
|
|
<androidx.appcompat.widget.AppCompatImageView
|
||
|
|
android:id="@+id/iv_item_icon"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:src="@mipmap/temp"/>
|
||
|
|
|
||
|
|
<androidx.appcompat.widget.AppCompatTextView
|
||
|
|
android:id="@+id/tv_item_title"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginLeft="9dp"
|
||
|
|
android:textSize="15sp"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:textColor="@color/gray3"
|
||
|
|
android:text="title"
|
||
|
|
/>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
<androidx.appcompat.widget.AppCompatTextView
|
||
|
|
android:id="@+id/tv_item_describle"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="6dp"
|
||
|
|
android:textSize="14sp"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:textColor="@color/gray9"
|
||
|
|
android:text="descrip"
|
||
|
|
/>
|
||
|
|
|
||
|
|
|
||
|
|
<RelativeLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="10dp" >
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="10dp"
|
||
|
|
android:layout_centerVertical="true"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:gravity="center_vertical" >
|
||
|
|
|
||
|
|
<androidx.appcompat.widget.AppCompatImageView
|
||
|
|
android:id="@+id/iv_reward_icon"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_centerInParent="true"
|
||
|
|
android:src="@mipmap/temp"/>
|
||
|
|
|
||
|
|
<androidx.appcompat.widget.AppCompatTextView
|
||
|
|
android:id="@+id/tv_reward_num"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginLeft="9dp"
|
||
|
|
android:textSize="16sp"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:textColor="@color/red_0b"
|
||
|
|
android:text="+10443"
|
||
|
|
/>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
<androidx.appcompat.widget.AppCompatTextView
|
||
|
|
android:id="@+id/tv_action"
|
||
|
|
android:layout_width="90dp"
|
||
|
|
android:layout_height="30dp"
|
||
|
|
android:layout_centerVertical="true"
|
||
|
|
android:layout_alignParentRight="true"
|
||
|
|
android:layout_marginLeft="9dp"
|
||
|
|
android:gravity="center"
|
||
|
|
android:background="@drawable/vididinapp_feature_message_bg_task_fazer"
|
||
|
|
android:textSize="14sp"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:textColor="@color/white"
|
||
|
|
android:text="@string/resgatar"
|
||
|
|
/>
|
||
|
|
</RelativeLayout>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|