2019-06-03 10:15:56 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-06-15 16:05:32 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
2019-06-03 10:15:56 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center_horizontal">
|
2019-08-28 17:05:41 +00:00
|
|
|
<LinearLayout
|
2020-06-16 09:46:44 +00:00
|
|
|
android:id="@+id/achievement_wrapper"
|
2019-08-28 17:05:41 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:layout_marginTop="@dimen/spacing_small"
|
|
|
|
|
android:layout_marginBottom="@dimen/spacing_small">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="41dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/sparkles_left" />
|
|
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
|
|
|
android:id="@+id/icon_view"
|
2020-06-15 16:05:32 +00:00
|
|
|
android:layout_width="52dp"
|
|
|
|
|
android:layout_height="56dp"
|
|
|
|
|
app:actualImageScaleType="fitCenter"
|
2020-06-10 14:33:17 +00:00
|
|
|
android:layout_marginStart="20dp"
|
|
|
|
|
android:layout_marginEnd="20dp" />
|
2019-08-28 17:05:41 +00:00
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="41dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/sparkles_right" />
|
|
|
|
|
</LinearLayout>
|
2020-06-16 09:46:44 +00:00
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/onboarding_done_icon"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/onboarding_done_art" />
|
2019-08-28 17:05:41 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/title_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/SectionTitle"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
android:layout_marginBottom="@dimen/spacing_medium"/>
|
2019-06-03 10:15:56 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/description_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/Body2"
|
2020-06-10 14:33:17 +00:00
|
|
|
android:textColor="@color/gray_200"
|
2019-06-03 10:15:56 +00:00
|
|
|
android:gravity="center_horizontal"/>
|
|
|
|
|
</LinearLayout>
|