Showing
1 changed file
with
25 additions
and
16 deletions
| ... | @@ -4,32 +4,41 @@ | ... | @@ -4,32 +4,41 @@ |
| 4 | android:layout_height="match_parent" | 4 | android:layout_height="match_parent" |
| 5 | android:background="#FFFFFF" | 5 | android:background="#FFFFFF" |
| 6 | android:orientation="vertical"> | 6 | android:orientation="vertical"> |
| 7 | - | 7 | + <ImageView |
| 8 | + android:layout_gravity="left|top" | ||
| 9 | + android:layout_width="50dp" | ||
| 10 | + android:layout_height="50dp" | ||
| 11 | + android:id="@+id/backBtn" | ||
| 12 | + android:src="@drawable/back_icon" | ||
| 13 | + android:padding="5dp" | ||
| 14 | + android:layout_margin="5dp" | ||
| 15 | + android:onClick="onClick"/> | ||
| 8 | <TextView | 16 | <TextView |
| 9 | android:layout_width="wrap_content" | 17 | android:layout_width="wrap_content" |
| 10 | android:layout_height="wrap_content" | 18 | android:layout_height="wrap_content" |
| 11 | android:text="오늘의 운동" | 19 | android:text="오늘의 운동" |
| 12 | android:layout_gravity="center" | 20 | android:layout_gravity="center" |
| 13 | - android:textSize="40dp" | 21 | + android:textSize="40dp"/> |
| 14 | - android:layout_marginTop="30dp"/> | ||
| 15 | <LinearLayout | 22 | <LinearLayout |
| 16 | android:layout_width="match_parent" | 23 | android:layout_width="match_parent" |
| 17 | - android:layout_height="130dp" | 24 | + android:layout_height="100dp" |
| 18 | android:layout_gravity="center" | 25 | android:layout_gravity="center" |
| 26 | + android:gravity="center" | ||
| 19 | android:orientation="horizontal" | 27 | android:orientation="horizontal" |
| 20 | android:layout_margin="10dp" | 28 | android:layout_margin="10dp" |
| 21 | android:layout_marginBottom="50dp"> | 29 | android:layout_marginBottom="50dp"> |
| 22 | 30 | ||
| 23 | <LinearLayout | 31 | <LinearLayout |
| 24 | - android:layout_width="130dp" | 32 | + android:layout_width="100dp" |
| 25 | android:layout_height="match_parent" | 33 | android:layout_height="match_parent" |
| 34 | + android:gravity="center" | ||
| 26 | android:layout_gravity="center" | 35 | android:layout_gravity="center" |
| 27 | android:background="@drawable/stroke_main" | 36 | android:background="@drawable/stroke_main" |
| 28 | android:orientation="vertical" | 37 | android:orientation="vertical" |
| 29 | android:padding="15dp"> | 38 | android:padding="15dp"> |
| 30 | <ImageView | 39 | <ImageView |
| 31 | - android:layout_width="70dp" | 40 | + android:layout_width="50dp" |
| 32 | - android:layout_height="70dp" | 41 | + android:layout_height="50dp" |
| 33 | android:layout_gravity="center" | 42 | android:layout_gravity="center" |
| 34 | android:src="@drawable/sport_icon" /> | 43 | android:src="@drawable/sport_icon" /> |
| 35 | <TextView | 44 | <TextView |
| ... | @@ -39,20 +48,20 @@ | ... | @@ -39,20 +48,20 @@ |
| 39 | android:layout_gravity="center" | 48 | android:layout_gravity="center" |
| 40 | android:text="1 회" | 49 | android:text="1 회" |
| 41 | android:textColor="@color/pacific" | 50 | android:textColor="@color/pacific" |
| 42 | - android:textSize="60px" | 51 | + android:textSize="35px" |
| 43 | android:textStyle="bold"/> | 52 | android:textStyle="bold"/> |
| 44 | </LinearLayout> | 53 | </LinearLayout> |
| 45 | 54 | ||
| 46 | <LinearLayout | 55 | <LinearLayout |
| 47 | - android:layout_width="130dp" | 56 | + android:layout_width="100dp" |
| 48 | android:layout_height="match_parent" | 57 | android:layout_height="match_parent" |
| 49 | android:layout_gravity="center" | 58 | android:layout_gravity="center" |
| 50 | android:background="@drawable/stroke_main" | 59 | android:background="@drawable/stroke_main" |
| 51 | android:orientation="vertical" | 60 | android:orientation="vertical" |
| 52 | android:padding="15dp"> | 61 | android:padding="15dp"> |
| 53 | <ImageView | 62 | <ImageView |
| 54 | - android:layout_width="70dp" | 63 | + android:layout_width="50dp" |
| 55 | - android:layout_height="70dp" | 64 | + android:layout_height="50dp" |
| 56 | android:layout_gravity="center" | 65 | android:layout_gravity="center" |
| 57 | android:src="@drawable/caloriy_icon" /> | 66 | android:src="@drawable/caloriy_icon" /> |
| 58 | <TextView | 67 | <TextView |
| ... | @@ -62,20 +71,20 @@ | ... | @@ -62,20 +71,20 @@ |
| 62 | android:layout_gravity="center" | 71 | android:layout_gravity="center" |
| 63 | android:text="100 kcal" | 72 | android:text="100 kcal" |
| 64 | android:textColor="@color/pacific" | 73 | android:textColor="@color/pacific" |
| 65 | - android:textSize="60px" | 74 | + android:textSize="35px" |
| 66 | android:textStyle="bold"/> | 75 | android:textStyle="bold"/> |
| 67 | </LinearLayout> | 76 | </LinearLayout> |
| 68 | 77 | ||
| 69 | <LinearLayout | 78 | <LinearLayout |
| 70 | - android:layout_width="130dp" | 79 | + android:layout_width="100dp" |
| 71 | android:layout_height="match_parent" | 80 | android:layout_height="match_parent" |
| 72 | android:layout_gravity="center" | 81 | android:layout_gravity="center" |
| 73 | android:background="@drawable/stroke_main" | 82 | android:background="@drawable/stroke_main" |
| 74 | android:orientation="vertical" | 83 | android:orientation="vertical" |
| 75 | android:padding="15dp"> | 84 | android:padding="15dp"> |
| 76 | <ImageView | 85 | <ImageView |
| 77 | - android:layout_width="60dp" | 86 | + android:layout_width="40dp" |
| 78 | - android:layout_height="70dp" | 87 | + android:layout_height="50dp" |
| 79 | android:layout_gravity="center" | 88 | android:layout_gravity="center" |
| 80 | android:src="@drawable/clock_icon" /> | 89 | android:src="@drawable/clock_icon" /> |
| 81 | <TextView | 90 | <TextView |
| ... | @@ -85,7 +94,7 @@ | ... | @@ -85,7 +94,7 @@ |
| 85 | android:layout_gravity="center" | 94 | android:layout_gravity="center" |
| 86 | android:text="30 분" | 95 | android:text="30 분" |
| 87 | android:textColor="@color/pacific" | 96 | android:textColor="@color/pacific" |
| 88 | - android:textSize="60px" | 97 | + android:textSize="35px" |
| 89 | android:textStyle="bold"/> | 98 | android:textStyle="bold"/> |
| 90 | </LinearLayout> | 99 | </LinearLayout> |
| 91 | </LinearLayout> | 100 | </LinearLayout> | ... | ... |
-
Please register or login to post a comment