Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created December 25, 2017 07:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssaurel/07b25ab24685dfe9a10b2003ffbcc77c to your computer and use it in GitHub Desktop.
Save ssaurel/07b25ab24685dfe9a10b2003ffbcc77c to your computer and use it in GitHub Desktop.
UI for the Conway's Game Of Life on SSaurel's Blog
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.ssaurel.gameoflife.MainActivity">
<com.ssaurel.gameoflife.GameOfLifeView
android:id="@+id/game_of_life"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment