Skip to content

Instantly share code, notes, and snippets.

@dainantonio
Created January 14, 2018 23:08
Show Gist options
  • Save dainantonio/9d49118236663362416faa922062a6f5 to your computer and use it in GitHub Desktop.
Save dainantonio/9d49118236663362416faa922062a6f5 to your computer and use it in GitHub Desktop.
ChristmasCardApp
<RelativeLayout
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"
tools:context=".MainActivity">
<ImageView
android:id="@+id/christmasImg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/momanddaughter" />
<TextView
android:id="@+id/Text1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textAlignment="center"
android:fontFamily="sans-serif"
android:textStyle="italic"
android:text="Tis The Season"
android:textColor="#33691E"
android:textSize="35sp"
/>
<TextView
android:id="@+id/Text2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textAlignment="center"
android:layout_alignParentTop="true"
android:layout_gravity="center_vertical"
android:layout_marginLeft="30dp"
android:layout_marginStart="30dp"
android:layout_marginTop="201dp"
android:fontFamily="sans-serif-condensed"
android:textStyle="italic"
android:text="MERRY CHRISTMAS!"
android:textColor="#33691E"
android:textSize="35sp"
/>
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment