commit changes

This commit is contained in:
Anshu Sharma 2018-11-16 12:10:19 -05:00
commit d81799f038
2 changed files with 21 additions and 11 deletions

View file

@ -7,26 +7,25 @@
android:gravity="center_horizontal"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="8dp"
android:background="@drawable/background"
tools:context=".ServiceProviderAvailabilities">
<Button
android:id="@+id/button"
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onSetTimes"
android:text="Button" />
android:layout_height="435dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TableRow
android:layout_width="match_parent"
android:layout_height="45dp"
android:layout_marginTop="10dp">
android:layout_height="45dp">
<TextView
android:id="@+id/Day"
@ -355,5 +354,16 @@
</TableRow>
</TableLayout>
</LinearLayout>
</ScrollView>
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onSetTimes"
android:text="Save"
android:theme="@style/AppTheme.Button"
android:layout_marginTop="5dp"/>
</LinearLayout>