Blame view

app/src/main/res/layout/fragment_sns_my_group.xml 5.52 KB
7f095a929   chudinhbka@gmail.com   Create GIT Project
1
2
3
4
  <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"
7f095a929   chudinhbka@gmail.com   Create GIT Project
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
      tools:context="com.dinhcv.lifelogpedometer.activity.SnsMyGroupFragment">
  
      <LinearLayout
          android:id="@+id/layout_top"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:orientation="vertical"
          android:padding="16dp"
          android:layout_alignParentTop="true"
          android:layout_alignParentStart="true">
  
          <RelativeLayout
              android:layout_width="match_parent"
              android:layout_height="40dp">
  
              <Spinner
                  android:id="@+id/spinner_my_group"
                  android:layout_width="match_parent"
                  android:layout_height="40dp"
                  android:background="@drawable/edittext_search_bg" />
  
              <ImageView
                  android:id="@+id/imv_spinner_my_group"
                  android:layout_width="52dp"
                  android:layout_height="match_parent"
                  android:layout_alignParentRight="true"
                  android:background="#232ef4"
                  android:padding="4dp"
                  android:src="@drawable/ic_spinner_expand" />
          </RelativeLayout>
  
          <LinearLayout
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:layout_marginTop="16dp"
              android:background="@android:color/white"
              android:orientation="vertical">
  
              <TextView
                  android:id="@+id/tv_title"
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:layout_marginLeft="8dp"
                  android:layout_marginRight="8dp"
                  android:layout_marginTop="4dp"
                  android:text="..."
                  android:textColor="@android:color/black"
                  android:textSize="@dimen/textsize_large" />
  
              <LinearLayout
                  android:layout_width="match_parent"
                  android:layout_height="76dp"
                  android:layout_marginLeft="8dp"
                  android:layout_marginRight="8dp"
                  android:layout_marginTop="4dp"
                  android:orientation="horizontal"
                  android:weightSum="100">
  
                  <LinearLayout
                      android:layout_width="0dp"
                      android:layout_height="wrap_content"
                      android:layout_weight="60"
                      android:orientation="vertical">
  
                      <TextView
                          android:id="@+id/tv_run_active_mode"
                          android:layout_width="wrap_content"
                          android:layout_height="wrap_content"
                          android:text="ランニング"
                          android:textColor="@android:color/black"
                          android:textSize="@dimen/textsize_medium" />
  
                      <TextView
                          android:id="@+id/tv_walk_active_mode"
                          android:layout_width="wrap_content"
                          android:layout_height="wrap_content"
                          android:text="ウォーキング"
                          android:textColor="@android:color/black"
                          android:textSize="@dimen/textsize_medium" />
  
                      <TextView
                          android:id="@+id/tv_bike_active_mode"
                          android:layout_width="wrap_content"
                          android:layout_height="wrap_content"
                          android:text="バイク"
                          android:textColor="@android:color/black"
                          android:textSize="@dimen/textsize_medium" />
                  </LinearLayout>
  
                  <Button
                      android:layout_width="0dp"
                      android:layout_height="36dp"
                      android:layout_gravity="bottom"
                      android:background="@drawable/button_background"
                      android:layout_marginBottom="8dp"
                      android:layout_weight="40"
                      android:gravity="center"
                      android:text="VMAP" />
              </LinearLayout>
          </LinearLayout>
  
          <TextView
              android:id="@+id/tv_goal"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:layout_marginTop="8dp"
              android:text="..."
              android:textColor="@android:color/white"
              android:textSize="@dimen/textsize_medium" />
  
          <Button
              android:id="@+id/btn_show_member"
              android:layout_width="120dp"
              android:layout_height="36dp"
              android:layout_gravity="right"
              android:layout_marginTop="8dp"
              android:background="@drawable/button_background"
              android:text="メンバー" />
      </LinearLayout>
  
      <android.support.v4.widget.SwipeRefreshLayout
          android:id="@+id/swipe_topic"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:layout_below="@id/layout_top">
  
          <android.support.v7.widget.RecyclerView
              android:id="@+id/rcv_member"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:layout_marginTop="8dp"
              android:scrollbars="vertical" />
      </android.support.v4.widget.SwipeRefreshLayout>
  </RelativeLayout>