Relative Layout, Parent View, Child View.

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:background="#009688"
        android:textSize="34sp"
        android:textColor="@android:color/white"
        android:textAppearance="?android:textAppearanceLarge"
        android:text="Happy" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:background="#009688"
        android:textSize="34sp"
        android:textColor="@android:color/white"
        android:textAppearance="?android:textAppearanceLarge"
        android:text="To" />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:background="#009688"
        android:textSize="34sp"
        android:textColor="@android:color/white"
        android:textAppearance="?android:textAppearanceLarge"
        android:text="You...!!" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:background="#009688"
        android:textSize="34sp"
        android:textColor="@android:color/white"
        android:textAppearance="?android:textAppearanceLarge"
        android:text="Birthday" />

</RelativeLayout>

Comments

Popular posts from this blog

Choose Your Social Media Channels Week 5 Quiz