Skip to content

Instantly share code, notes, and snippets.

@florent37
Last active December 12, 2018 07:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save florent37/b06ade41ff9295d9c50be05bcc820f69 to your computer and use it in GitHub Desktop.
Save florent37/b06ade41ff9295d9c50be05bcc820f69 to your computer and use it in GitHub Desktop.
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="24dp"
android:paddingRight="24dp"
android:paddingTop="48dp"
android:paddingBottom"48dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
orientation="vertical">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:fontFamily="@font/raleway_black"
android:textSize="38sp"
android:textColor="@android:color/white"
android:shadowColor="@android:color/black"
android:shadowDx="3"
android:shadowDy="3"
android:shadowRadius="4"/>
<View
android:layout_width="40dp"
android:layout_height="5dp"
android:layout_marginTop="14dp"
android:background="#df9494"/>
<TextView
android:id="@+id/details"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="14dp"
android:text="Description"
app:fontFamily="@font/raleway_regular"
android:textColor="@android:color/white"
android:shadowColor="@android:color/black"
android:shadowDx="3"
android:shadowDy="3"
android:shadowRadius="4"
android:textSize="20sp"/>
</LinearLayout>
</ScrollView
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment