Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created June 6, 2017 12:38
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/709f19cdfc2539ac34810570f5f10919 to your computer and use it in GitHub Desktop.
Save ssaurel/709f19cdfc2539ac34810570f5f10919 to your computer and use it in GitHub Desktop.
Activity Main Layout for the Paint App tutorial on the SSaurel's Channel
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.ssaurel.mypaint.MainActivity">
<com.ssaurel.mypaint.PaintView
android:id="@+id/paintView"
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