Skip to content

Instantly share code, notes, and snippets.

@Eng-MFQ
Created February 13, 2018 12:07
Show Gist options
  • Save Eng-MFQ/ac4265c81f0bea7b86f9046b2d54f230 to your computer and use it in GitHub Desktop.
Save Eng-MFQ/ac4265c81f0bea7b86f9046b2d54f230 to your computer and use it in GitHub Desktop.
Level 1 Project
<!-- To download the Images and Project Mockup use links below -->
<!-- https://www.dropbox.com/sh/kq966uzv9cmq85u/AAB2bs7mQjFcOd6O8nElGHN1a?dl=0 -->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#00204A"
android:gravity="center"
android:padding="30dp"
android:text="Happy Birthday!"
android:textColor="#ffffff"
android:textSize="40sp"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#005792"
android:gravity="center"
android:padding="20dp"
android:text="MOM"
android:textColor="#ffffff"
android:textSize="30sp"
/>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="centerCrop"
android:src="@drawable/happy_birthday"
/>
<LinearLayout
android:layout_width="match_parent"
android:background="#00BBF0"
android:layout_height="match_parent">
<ImageView
android:layout_width="40dp"
android:layout_marginTop="16dp"
android:src="@drawable/ic_favorite_black_24dp"
android:layout_margin="16dp"
android:layout_height="40dp"/>
<TextView
android:text="Muwaffaq"
android:textSize="25sp"
android:layout_margin="16dp"
android:textColor="#fff"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment