<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#99F0CF"
android:orientation="vertical"
android:fitsSystemWindows="false"
tools:context=".activity.AwardActivity">
<View
android:layout_width="match_parent"
android:layout_height="280dp"
android:background="@mipmap/task_complete_header" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:layout_marginLeft="5dp"
android:layout_marginTop="-100dp"
android:layout_marginRight="5dp"
android:orientation="vertical"
android:background="@mipmap/award_bg"
android:minHeight="400dp"
android:gravity="center"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/award_rv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="30dp"
android:paddingRight="30dp"
android:paddingBottom="40dp" />
<!--<View
android:layout_width="match_parent"
android:layout_height="134dp"
android:background="@mipmap/task_complete_bottom"
android:layout_gravity="center_horizontal"
android:layout_marginTop="20dp"
/>-->
</LinearLayout>
</LinearLayout>
|