2016-03-13 22:59:33 -04:30
|
|
|
<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"
|
2016-04-11 00:07:15 -04:30
|
|
|
android:onClick="courseScreen"
|
2016-03-13 22:59:33 -04:30
|
|
|
android:layout_below="@+id/textView"
|
|
|
|
|
android:layout_centerHorizontal="true" />
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|