71 lines
2.8 KiB
XML
71 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.v4.widget.NestedScrollView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/bg"
|
|
android:orientation="vertical"
|
|
tools:ignore="MissingPrefix"
|
|
>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="16dp"
|
|
>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/rect_white"
|
|
android:orientation="vertical"
|
|
>
|
|
|
|
<TextView
|
|
android:id="@+id/tvTitle"
|
|
fontPath="@string/font_medium"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:gravity="left"
|
|
android:text="This is an example of a title"
|
|
android:textColor="@color/text"
|
|
android:textSize="18sp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvDescription"
|
|
fontPath="@string/font_regular"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginRight="16dp"
|
|
android:gravity="left"
|
|
android:text="@string/lorem"
|
|
android:maxLines="6"
|
|
android:lineSpacingMultiplier="1.2"
|
|
android:textColor="@color/text_black_5"
|
|
android:textSize="14sp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvCallToAction"
|
|
fontPath="@string/font_regular"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="right"
|
|
android:layout_marginRight="0dp"
|
|
android:layout_marginBottom="0dp"
|
|
android:gravity="left"
|
|
android:padding="16dp"
|
|
android:text="Call to Action"
|
|
android:textColor="#1c5c9a"
|
|
android:textSize="14sp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v4.widget.NestedScrollView> |