fragment_mate.xml
1.92 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
xmlns:app="http://schemas.android.com/apk/res-auto">
<TextView
android:id="@+id/mateNumberTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="가족"
android:textSize="14sp"
android:textColor="#95989A"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toTopOf="@+id/fragmentMateGuideline"
app:layout_constraintLeft_toLeftOf="parent"
android:layout_marginStart="16dp"
/>
<View
android:id="@+id/fragmentMateGuideline"
android:layout_width="0dp"
android:layout_height="1dp"
android:background="#95989A"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginTop="50dp"
/>
<android.support.v7.widget.RecyclerView
android:id="@+id/fragmentFamiliyRecyclerView"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/fragmentMateGuideline"
android:background="#95989A"
>
</android.support.v7.widget.RecyclerView>
</android.support.constraint.ConstraintLayout>
</android.support.v4.widget.NestedScrollView>