blob: 94034d56ed04453dc8cfdc2c2886b83607a6b3a2 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<org.wordpress.android.widgets.WPScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/margin_large"
android:layout_marginRight="@dimen/margin_large"
android:orientation="vertical"
android:paddingLeft="@dimen/content_margin"
android:paddingRight="@dimen/content_margin">
<com.android.volley.toolbox.NetworkImageView
android:id="@+id/image_plan_icon"
android:layout_width="@dimen/plan_icon_size"
android:layout_height="@dimen/plan_icon_size"
android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/margin_extra_large"
tools:background="@drawable/penandink" />
<org.wordpress.android.widgets.WPTextView
android:id="@+id/text_product_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/margin_medium"
android:textColor="@color/blue_wordpress"
android:textSize="@dimen/text_sz_extra_large"
tools:text="text_product_name" />
<org.wordpress.android.widgets.WPTextView
android:id="@+id/text_tagline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/margin_medium"
android:gravity="center_horizontal"
android:textColor="@color/grey_darken_10"
android:textSize="@dimen/text_sz_large"
android:textStyle="italic"
tools:text="text_tagline" />
<!-- plan features are added to this container view -->
<LinearLayout
android:id="@+id/plan_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginBottom="@dimen/margin_extra_large"
android:layout_marginTop="@dimen/margin_extra_large"
android:background="@color/divider_grey" />
</LinearLayout>
</org.wordpress.android.widgets.WPScrollView>