Initial commit

This commit is contained in:
Reynaldo Reyes
2016-03-13 22:59:33 -04:30
commit 0a593484b4
61 changed files with 2067 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity">
<TextView
android:text="@string/intro"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:id="@+id/textView" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_show_classes"
android:id="@+id/button"
android:layout_marginTop="50dp"
android:onClick="adminScreen"
android:layout_below="@+id/textView"
android:layout_centerHorizontal="true" />
</RelativeLayout>