Created
May 4, 2017 13:16
-
-
Save muhtarudinsiregar/191ce574a204f8c9ee7a5b5fdb133058 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://classroom.udacity.com/courses/ud834/lessons/4330701752/concepts/42402386170923 | |
<LinearLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:orientation="vertical"> | |
<ImageView | |
android:src="@drawable/ocean" | |
android:layout_width="match_parent" | |
android:layout_height="0dp" | |
android:layout_weight="1" | |
android:scaleType="centerCrop"/> | |
<TextView | |
android:text="You're invited!" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:textColor="@android:color/white" | |
android:paddingTop="16dp" | |
android:paddingRight="16dp" | |
android:paddingLeft="16dp" | |
android:paddingBottom="8dp" | |
android:textSize="45sp" | |
android:background="#009688"/> | |
<TextView | |
android:text="Bonfire at the beach" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:textColor="@android:color/white" | |
android:paddingLeft="16dp" | |
android:paddingRight="16dp" | |
android:paddingBottom="8dp" | |
android:textSize="24sp" | |
android:background="#009688"/> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment