-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalysis_item.xml
More file actions
34 lines (30 loc) · 1.09 KB
/
analysis_item.xml
File metadata and controls
34 lines (30 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="20dp"
android:background="#F1F4F5">
<TextView
android:layout_width="200dp"
android:layout_height="50dp"
android:layout_gravity="center"
android:layout_marginTop="20dp"
android:layout_marginBottom="25dp"
android:text="오늘의 식단"
android:textAlignment="center"
android:textSize="20dp"/>
<TextView
android:layout_width="100dp"
android:layout_height="20dp"
android:text="12-18"/>
<TextView
android:layout_width="100dp"
android:layout_height="25dp"
android:text="남성"
android:textSize="20dp"/>
<com.github.mikephil.charting.charts.BarChart
android:id="@+id/barchart"
android:layout_height="match_parent"
android:layout_width="match_parent"/>
</LinearLayout>