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"
|
|
|
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center_horizontal">
|
2019-08-28 17:05:41 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
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"
|
|
|
|
|
android:layout_width="48dp"
|
|
|
|
|
android:layout_height="52dp"
|
|
|
|
|
android:scaleType="center"
|
|
|
|
|
android:layout_marginStart="@dimen/spacing_large"
|
|
|
|
|
android:layout_marginEnd="@dimen/spacing_large" />
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="41dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/sparkles_right" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<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"
|
|
|
|
|
android:gravity="center_horizontal"/>
|
|
|
|
|
</LinearLayout>
|