Created
December 25, 2017 07:18
-
-
Save ssaurel/07b25ab24685dfe9a10b2003ffbcc77c to your computer and use it in GitHub Desktop.
UI for the Conway's Game Of Life on SSaurel's Blog
This file contains 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
<?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