Skip to content

Instantly share code, notes, and snippets.

@alexjlockwood
Created November 22, 2014 21:19
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexjlockwood/a96781b876138c37e88e to your computer and use it in GitHub Desktop.
Save alexjlockwood/a96781b876138c37e88e to your computer and use it in GitHub Desktop.
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_root_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipChildren="false">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true">
<View
android:id="@+id/red_box"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_margin="8dp"
android:background="#f00"
android:elevation="4dp"/>
<View
android:id="@+id/green_box"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_margin="8dp"
android:layout_toEndOf="@id/red_box"
android:background="#0f0"
android:elevation="4dp"/>
<View
android:id="@+id/blue_box"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_below="@id/red_box"
android:layout_margin="8dp"
android:background="#00f"
android:elevation="4dp"/>
<View
android:id="@+id/black_box"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_below="@id/green_box"
android:layout_margin="8dp"
android:layout_toEndOf="@id/blue_box"
android:background="#000"
android:elevation="4dp"/>
</RelativeLayout>
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment