신기성

1121 merging

...@@ -41,6 +41,6 @@ def policy_hash_reader(): ...@@ -41,6 +41,6 @@ def policy_hash_reader():
41 for r in rdr: 41 for r in rdr:
42 policy_dict[r[0]] = r[1] 42 policy_dict[r[0]] = r[1]
43 43
44 -#policy_hash_writer(policies) 44 +policy_hash_writer(policies)
45 -policy_hash_reader() 45 +#policy_hash_reader()
46 -policy_db_reader() 46 +#policy_db_reader()
......
...@@ -82,7 +82,7 @@ class DetailActivity : AppCompatActivity() { ...@@ -82,7 +82,7 @@ class DetailActivity : AppCompatActivity() {
82 detailDday.text=memo!!.D_day 82 detailDday.text=memo!!.D_day
83 detailTitle.text=memo!!.Policy 83 detailTitle.text=memo!!.Policy
84 detailScore.rating=4.toFloat() 84 detailScore.rating=4.toFloat()
85 - detailFavor.text= " " + memo!!.Keyword 85 + detailFavor.text= memo!!.Keyword
86 86
87 val web : WebView = findViewById(R.id.policy_context) 87 val web : WebView = findViewById(R.id.policy_context)
88 val summary : String = memo!!.Content 88 val summary : String = memo!!.Content
......
...@@ -18,11 +18,18 @@ import androidx.core.content.ContextCompat.startActivity ...@@ -18,11 +18,18 @@ import androidx.core.content.ContextCompat.startActivity
18 import androidx.viewpager.widget.ViewPager 18 import androidx.viewpager.widget.ViewPager
19 import com.google.android.material.bottomnavigation.BottomNavigationView 19 import com.google.android.material.bottomnavigation.BottomNavigationView
20 import com.google.android.material.snackbar.Snackbar 20 import com.google.android.material.snackbar.Snackbar
21 +import com.google.firebase.database.FirebaseDatabase
22 +import com.google.firebase.messaging.FirebaseMessaging
21 import kotlinx.android.synthetic.main.activity_signin.* 23 import kotlinx.android.synthetic.main.activity_signin.*
22 import kotlinx.android.synthetic.main.dialog_example.* 24 import kotlinx.android.synthetic.main.dialog_example.*
23 25
24 class SignInActivity : AppCompatActivity() { 26 class SignInActivity : AppCompatActivity() {
25 27
28 + val user_db = FirebaseDatabase.getInstance("https://wello-topic.firebaseio.com/").reference
29 + private fun writeNewUser(Topic : String) {
30 + user_db.child(Topic).setValue(1)/// .setValue(user)
31 + }
32 +
26 internal lateinit var viewpager : ViewPager 33 internal lateinit var viewpager : ViewPager
27 ////bottom navigation view operation start 1 34 ////bottom navigation view operation start 1
28 lateinit var bottomBar: ActionBar 35 lateinit var bottomBar: ActionBar
...@@ -88,7 +95,26 @@ class SignInActivity : AppCompatActivity() { ...@@ -88,7 +95,26 @@ class SignInActivity : AppCompatActivity() {
88 startActivity(intent) 95 startActivity(intent)
89 } 96 }
90 .setNegativeButton("다음에 하기") { dialogInterface, i -> 97 .setNegativeButton("다음에 하기") { dialogInterface, i ->
91 - editor.clear() 98 + //editor.clear()
99 + if(prof.getString("existing_topic","c1_1c2_1c3_1c4_1c5_1c6_1c7_1c8_1c9_1c10_1c11_1c12_1c13_1c14_1c15_1c16_1")!="c1_1c2_1c3_1c4_1c5_1c6_1c7_1c8_1c9_1c10_1c11_1c12_1c13_1c14_1c15_1c16_1"){
100 + /*
101 + FirebaseMessaging.getInstance().unsubscribeFromTopic(prof.getString("existing_topic","none").toString())
102 + FirebaseMessaging.getInstance().subscribeToTopic(user_topic).addOnCompleteListener { task ->
103 + if (!task.isSuccessful) { } // 성공
104 + }
105 + writeNewUser(user_topic) // db에 쓰기
106 + editor.putString("existing_topic",user_topic)
107 + editor.commit()
108 + */
109 + }else{
110 + FirebaseMessaging.getInstance().subscribeToTopic("c1_1c2_1c3_1c4_1c5_1c6_1c7_1c8_1c9_1c10_1c11_1c12_1c13_1c14_1c15_1c16_1").addOnCompleteListener { task ->
111 + if (!task.isSuccessful) { } // 성공
112 + }
113 + writeNewUser("c1_1c2_1c3_1c4_1c5_1c6_1c7_1c8_1c9_1c10_1c11_1c12_1c13_1c14_1c15_1c16_1") // db에 쓰기
114 + editor.putString("existing_topic","c1_1c2_1c3_1c4_1c5_1c6_1c7_1c8_1c9_1c10_1c11_1c12_1c13_1c14_1c15_1c16_1")
115 + editor.commit()
116 +
117 + }
92 118
93 } 119 }
94 .show() 120 .show()
......
...@@ -12,8 +12,8 @@ class ViewPagerAdapter(private val context : Context) : PagerAdapter() { ...@@ -12,8 +12,8 @@ class ViewPagerAdapter(private val context : Context) : PagerAdapter() {
12 12
13 private var layoutInflater : LayoutInflater? = null 13 private var layoutInflater : LayoutInflater? = null
14 val Image = arrayOf( 14 val Image = arrayOf(
15 - R.drawable.event1, 15 + R.drawable.event_1,
16 - R.drawable.event2, 16 + R.drawable.event_2,
17 R.drawable.image01 17 R.drawable.image01
18 ) 18 )
19 19
......
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
39 android:layout_height="match_parent" 39 android:layout_height="match_parent"
40 android:layout_marginLeft="8dp" 40 android:layout_marginLeft="8dp"
41 android:layout_marginRight="8dp" 41 android:layout_marginRight="8dp"
42 + android:layout_marginBottom="8dp"
42 android:layout_weight="1" 43 android:layout_weight="1"
43 android:background="@drawable/round_ratangle" 44 android:background="@drawable/round_ratangle"
44 android:elevation="3dp" 45 android:elevation="3dp"
...@@ -71,35 +72,57 @@ ...@@ -71,35 +72,57 @@
71 android:background="@drawable/broken_rectangle" 72 android:background="@drawable/broken_rectangle"
72 android:gravity="center" 73 android:gravity="center"
73 android:textColor="#FFF" 74 android:textColor="#FFF"
74 - android:textSize="18sp" /> 75 + android:textSize="18dp" />
75 76
76 <TextView 77 <TextView
77 android:id="@+id/policyFavorDetail" 78 android:id="@+id/policyFavorDetail"
78 android:layout_width="wrap_content" 79 android:layout_width="wrap_content"
79 android:layout_height="wrap_content" 80 android:layout_height="wrap_content"
81 + android:layout_marginLeft="16dp"
80 android:layout_marginTop="5dp" 82 android:layout_marginTop="5dp"
81 - android:ellipsize="end" /> 83 + android:layout_marginRight="5dp"
84 + android:ellipsize="end"
85 + android:textSize="14dp" />
82 86
83 <TextView 87 <TextView
84 android:id="@+id/policyTitleDetail" 88 android:id="@+id/policyTitleDetail"
85 android:layout_width="match_parent" 89 android:layout_width="match_parent"
86 android:layout_height="wrap_content" 90 android:layout_height="wrap_content"
87 android:layout_marginLeft="11dp" 91 android:layout_marginLeft="11dp"
88 - android:layout_marginBottom="4dp" 92 + android:layout_marginTop="10dp"
89 - android:textSize="30sp" /> 93 + android:layout_marginBottom="10dp"
94 + android:textSize="24dp" />
90 95
91 - <RatingBar 96 + <LinearLayout
92 - android:id="@+id/policyScoreDetail"
93 - style="?android:attr/ratingBarStyleIndicator"
94 android:layout_width="wrap_content" 97 android:layout_width="wrap_content"
95 android:layout_height="wrap_content" 98 android:layout_height="wrap_content"
96 - android:layout_marginLeft="11dp" 99 + android:orientation="horizontal">
97 - android:max="5" 100 +
98 - android:rating="3.5" 101 + <TextView
99 - android:scaleX=".5" 102 + android:id="@+id/textView12"
100 - android:scaleY="0.5" 103 + android:layout_width="match_parent"
101 - android:transformPivotX="0dp" 104 + android:layout_height="wrap_content"
102 - android:transformPivotY="0dp" /> 105 + android:layout_gravity="center_horizontal"
106 + android:layout_marginLeft="5dp"
107 + android:gravity="center"
108 + android:text=" (Beta)"
109 + android:textColor="#29ABE2"
110 + android:textSize="14dp" />
111 +
112 + <RatingBar
113 + android:id="@+id/policyScoreDetail"
114 + style="?android:attr/ratingBarStyleIndicator"
115 + android:layout_width="wrap_content"
116 + android:layout_height="wrap_content"
117 + android:layout_marginLeft="11dp"
118 + android:max="5"
119 + android:rating="3.5"
120 + android:scaleX=".5"
121 + android:scaleY="0.5"
122 + android:transformPivotX="0dp"
123 + android:transformPivotY="0dp" />
124 +
125 + </LinearLayout>
103 126
104 <WebView 127 <WebView
105 android:id="@+id/policy_context" 128 android:id="@+id/policy_context"
...@@ -109,23 +132,28 @@ ...@@ -109,23 +132,28 @@
109 </LinearLayout> 132 </LinearLayout>
110 </ScrollView> 133 </ScrollView>
111 134
135 + <LinearLayout
136 + android:layout_width="match_parent"
137 + android:layout_height="5dp"
138 + android:background="@drawable/gradation"
139 + android:orientation="horizontal"></LinearLayout>
140 +
112 <FrameLayout 141 <FrameLayout
113 android:id="@+id/fragmentContainer" 142 android:id="@+id/fragmentContainer"
114 android:layout_width="match_parent" 143 android:layout_width="match_parent"
115 android:layout_height="wrap_content" 144 android:layout_height="wrap_content"
116 - android:elevation="4dp"
117 app:layout_constraintBottom_toBottomOf="parent"> 145 app:layout_constraintBottom_toBottomOf="parent">
118 146
119 <LinearLayout 147 <LinearLayout
120 android:layout_width="match_parent" 148 android:layout_width="match_parent"
121 android:layout_height="match_parent" 149 android:layout_height="match_parent"
122 - android:elevation="5dp"
123 android:orientation="horizontal"> 150 android:orientation="horizontal">
124 151
125 <LinearLayout 152 <LinearLayout
126 android:layout_width="match_parent" 153 android:layout_width="match_parent"
127 android:layout_height="match_parent" 154 android:layout_height="match_parent"
128 android:layout_weight="1.2" 155 android:layout_weight="1.2"
156 + android:background="#FFFFFF"
129 android:gravity="center" 157 android:gravity="center"
130 android:orientation="horizontal"> 158 android:orientation="horizontal">
131 159
......
...@@ -161,36 +161,36 @@ ...@@ -161,36 +161,36 @@
161 android:gravity="left|center_vertical" 161 android:gravity="left|center_vertical"
162 android:paddingLeft="33dp" 162 android:paddingLeft="33dp"
163 android:text="설정" 163 android:text="설정"
164 - android:textSize="20dp" /> 164 + android:textSize="18dp" />
165 165
166 <Button 166 <Button
167 android:id="@+id/InfoButtonNotice" 167 android:id="@+id/InfoButtonNotice"
168 + style="?android:attr/borderlessButtonStyle"
168 android:layout_width="match_parent" 169 android:layout_width="match_parent"
169 android:layout_height="wrap_content" 170 android:layout_height="wrap_content"
170 android:layout_marginTop="22dp" 171 android:layout_marginTop="22dp"
171 android:background="#FFF" 172 android:background="#FFF"
172 - style="?android:attr/borderlessButtonStyle"
173 android:drawableLeft="@drawable/_alert" 173 android:drawableLeft="@drawable/_alert"
174 android:drawablePadding="22dp" 174 android:drawablePadding="22dp"
175 android:gravity="left|center_vertical" 175 android:gravity="left|center_vertical"
176 android:paddingLeft="33dp" 176 android:paddingLeft="33dp"
177 android:text="공지사항" 177 android:text="공지사항"
178 - android:textSize="20dp" /> 178 + android:textSize="18dp" />
179 179
180 <Button 180 <Button
181 android:id="@+id/InfoButtonFAQ" 181 android:id="@+id/InfoButtonFAQ"
182 + style="?android:attr/borderlessButtonStyle"
182 android:layout_width="match_parent" 183 android:layout_width="match_parent"
183 android:layout_height="wrap_content" 184 android:layout_height="wrap_content"
184 android:layout_marginTop="22dp" 185 android:layout_marginTop="22dp"
185 android:background="#FFF" 186 android:background="#FFF"
186 - android:elevation="0dp"
187 - style="?android:attr/borderlessButtonStyle"
188 android:drawableLeft="@drawable/help" 187 android:drawableLeft="@drawable/help"
189 android:drawablePadding="22dp" 188 android:drawablePadding="22dp"
189 + android:elevation="0dp"
190 android:gravity="left|center_vertical" 190 android:gravity="left|center_vertical"
191 android:paddingLeft="33dp" 191 android:paddingLeft="33dp"
192 android:text="자주 묻는 질문" 192 android:text="자주 묻는 질문"
193 - android:textSize="20dp" /> 193 + android:textSize="18dp" />
194 194
195 </LinearLayout> 195 </LinearLayout>
196 196
......
...@@ -148,14 +148,6 @@ ...@@ -148,14 +148,6 @@
148 android:orientation="vertical"> 148 android:orientation="vertical">
149 149
150 <TextView 150 <TextView
151 - android:id="@+id/textView10"
152 - android:layout_width="wrap_content"
153 - android:layout_height="wrap_content"
154 - android:text="(*필수항목)"
155 - android:textColor="#29ABE2"
156 - android:textSize="13dp" />
157 -
158 - <TextView
159 android:id="@+id/explainTextView" 151 android:id="@+id/explainTextView"
160 android:layout_width="wrap_content" 152 android:layout_width="wrap_content"
161 android:layout_height="wrap_content" 153 android:layout_height="wrap_content"
......
...@@ -148,14 +148,6 @@ ...@@ -148,14 +148,6 @@
148 android:orientation="vertical"> 148 android:orientation="vertical">
149 149
150 <TextView 150 <TextView
151 - android:id="@+id/textView10"
152 - android:layout_width="wrap_content"
153 - android:layout_height="wrap_content"
154 - android:text="(*필수항목)"
155 - android:textColor="#29ABE2"
156 - android:textSize="13dp" />
157 -
158 - <TextView
159 android:id="@+id/explainTextView" 151 android:id="@+id/explainTextView"
160 android:layout_width="wrap_content" 152 android:layout_width="wrap_content"
161 android:layout_height="wrap_content" 153 android:layout_height="wrap_content"
......
...@@ -148,14 +148,6 @@ ...@@ -148,14 +148,6 @@
148 android:orientation="vertical"> 148 android:orientation="vertical">
149 149
150 <TextView 150 <TextView
151 - android:id="@+id/textView10"
152 - android:layout_width="wrap_content"
153 - android:layout_height="wrap_content"
154 - android:text="(*필수항목)"
155 - android:textColor="#29ABE2"
156 - android:textSize="13dp" />
157 -
158 - <TextView
159 android:id="@+id/explainTextView" 151 android:id="@+id/explainTextView"
160 android:layout_width="wrap_content" 152 android:layout_width="wrap_content"
161 android:layout_height="wrap_content" 153 android:layout_height="wrap_content"
......
...@@ -148,14 +148,6 @@ ...@@ -148,14 +148,6 @@
148 android:orientation="vertical"> 148 android:orientation="vertical">
149 149
150 <TextView 150 <TextView
151 - android:id="@+id/textView10"
152 - android:layout_width="wrap_content"
153 - android:layout_height="wrap_content"
154 - android:text="(*필수항목)"
155 - android:textColor="#29ABE2"
156 - android:textSize="13dp" />
157 -
158 - <TextView
159 android:id="@+id/explainTextView" 151 android:id="@+id/explainTextView"
160 android:layout_width="wrap_content" 152 android:layout_width="wrap_content"
161 android:layout_height="wrap_content" 153 android:layout_height="wrap_content"
......
...@@ -148,14 +148,6 @@ ...@@ -148,14 +148,6 @@
148 android:orientation="vertical"> 148 android:orientation="vertical">
149 149
150 <TextView 150 <TextView
151 - android:id="@+id/textView10"
152 - android:layout_width="wrap_content"
153 - android:layout_height="wrap_content"
154 - android:text="(*필수항목)"
155 - android:textColor="#29ABE2"
156 - android:textSize="13dp" />
157 -
158 - <TextView
159 android:id="@+id/explainTextView" 151 android:id="@+id/explainTextView"
160 android:layout_width="wrap_content" 152 android:layout_width="wrap_content"
161 android:layout_height="wrap_content" 153 android:layout_height="wrap_content"
......
...@@ -71,8 +71,29 @@ ...@@ -71,8 +71,29 @@
71 <LinearLayout 71 <LinearLayout
72 android:layout_width="match_parent" 72 android:layout_width="match_parent"
73 android:layout_height="wrap_content" 73 android:layout_height="wrap_content"
74 + android:layout_marginLeft="15dp"
75 + android:layout_marginTop="15dp"
76 + android:layout_marginRight="15dp"
77 + android:layout_marginBottom="2dp"
78 + android:orientation="vertical">
79 +
80 + <TextView
81 + android:id="@+id/textView10"
82 + android:layout_width="match_parent"
83 + android:layout_height="wrap_content"
84 + android:text="분야별 복지정책"
85 + android:textSize="18dp"
86 + android:textStyle="bold" />
87 + </LinearLayout>
88 +
89 + <LinearLayout
90 + android:layout_width="match_parent"
91 + android:layout_height="wrap_content"
74 android:layout_gravity="center" 92 android:layout_gravity="center"
75 - android:layout_margin="15dp" 93 + android:layout_marginLeft="15dp"
94 + android:layout_marginTop="5dp"
95 + android:layout_marginRight="15dp"
96 + android:layout_marginBottom="15dp"
76 android:layout_weight="1" 97 android:layout_weight="1"
77 android:background="@drawable/edgemaking" 98 android:background="@drawable/edgemaking"
78 android:gravity="center" 99 android:gravity="center"
......
...@@ -141,7 +141,7 @@ ...@@ -141,7 +141,7 @@
141 android:text="# 장애인" 141 android:text="# 장애인"
142 android:textAppearance="@style/TextAppearance.AppCompat" 142 android:textAppearance="@style/TextAppearance.AppCompat"
143 android:textSize="16dp" 143 android:textSize="16dp"
144 - app:chipBackgroundColor="#C6FFFFFF" /> 144 + app:chipBackgroundColor="#FFFFFF" />
145 145
146 <com.google.android.material.chip.Chip 146 <com.google.android.material.chip.Chip
147 style="@style/Widget.MaterialComponents.Chip.Choice" 147 style="@style/Widget.MaterialComponents.Chip.Choice"
...@@ -153,7 +153,7 @@ ...@@ -153,7 +153,7 @@
153 android:text="# 한부모" 153 android:text="# 한부모"
154 android:textAppearance="@style/TextAppearance.AppCompat" 154 android:textAppearance="@style/TextAppearance.AppCompat"
155 android:textSize="16dp" 155 android:textSize="16dp"
156 - app:chipBackgroundColor="#C6FFFFFF" /> 156 + app:chipBackgroundColor="#FFFFFF" />
157 157
158 158
159 <com.google.android.material.chip.Chip 159 <com.google.android.material.chip.Chip
...@@ -165,7 +165,7 @@ ...@@ -165,7 +165,7 @@
165 android:text="# 다문화" 165 android:text="# 다문화"
166 android:textAppearance="@style/TextAppearance.AppCompat" 166 android:textAppearance="@style/TextAppearance.AppCompat"
167 android:textSize="16dp" 167 android:textSize="16dp"
168 - app:chipBackgroundColor="#C6FFFFFF" /> 168 + app:chipBackgroundColor="#FFFFFF" />
169 </com.google.android.material.chip.ChipGroup> 169 </com.google.android.material.chip.ChipGroup>
170 170
171 <com.google.android.material.chip.ChipGroup 171 <com.google.android.material.chip.ChipGroup
...@@ -181,7 +181,7 @@ ...@@ -181,7 +181,7 @@
181 android:text="# 저소득층" 181 android:text="# 저소득층"
182 android:textAppearance="@style/TextAppearance.AppCompat" 182 android:textAppearance="@style/TextAppearance.AppCompat"
183 android:textSize="16dp" 183 android:textSize="16dp"
184 - app:chipBackgroundColor="#C6FFFFFF" 184 + app:chipBackgroundColor="#FFFFFF"
185 app:chipIcon="@drawable/image01" /> 185 app:chipIcon="@drawable/image01" />
186 186
187 <com.google.android.material.chip.Chip 187 <com.google.android.material.chip.Chip
...@@ -192,7 +192,7 @@ ...@@ -192,7 +192,7 @@
192 android:text="# 임신/출산" 192 android:text="# 임신/출산"
193 android:textAppearance="@style/TextAppearance.AppCompat" 193 android:textAppearance="@style/TextAppearance.AppCompat"
194 android:textSize="16dp" 194 android:textSize="16dp"
195 - app:chipBackgroundColor="#C6FFFFFF" /> 195 + app:chipBackgroundColor="#FFFFFF" />
196 196
197 </com.google.android.material.chip.ChipGroup> 197 </com.google.android.material.chip.ChipGroup>
198 </com.google.android.material.chip.ChipGroup> 198 </com.google.android.material.chip.ChipGroup>
...@@ -226,7 +226,7 @@ ...@@ -226,7 +226,7 @@
226 android:text="# 아동" 226 android:text="# 아동"
227 android:textAppearance="@style/TextAppearance.AppCompat" 227 android:textAppearance="@style/TextAppearance.AppCompat"
228 android:textSize="16dp" 228 android:textSize="16dp"
229 - app:chipBackgroundColor="#C6FFFFFF" /> 229 + app:chipBackgroundColor="#FFFFFF" />
230 230
231 <com.google.android.material.chip.Chip 231 <com.google.android.material.chip.Chip
232 style="@style/Widget.MaterialComponents.Chip.Choice" 232 style="@style/Widget.MaterialComponents.Chip.Choice"
...@@ -238,7 +238,7 @@ ...@@ -238,7 +238,7 @@
238 android:text="# 청소년" 238 android:text="# 청소년"
239 android:textAppearance="@style/TextAppearance.AppCompat" 239 android:textAppearance="@style/TextAppearance.AppCompat"
240 android:textSize="16dp" 240 android:textSize="16dp"
241 - app:chipBackgroundColor="#C6FFFFFF" /> 241 + app:chipBackgroundColor="#FFFFFF" />
242 242
243 243
244 <com.google.android.material.chip.Chip 244 <com.google.android.material.chip.Chip
...@@ -250,7 +250,7 @@ ...@@ -250,7 +250,7 @@
250 android:text="# 청년" 250 android:text="# 청년"
251 android:textAppearance="@style/TextAppearance.AppCompat" 251 android:textAppearance="@style/TextAppearance.AppCompat"
252 android:textSize="16dp" 252 android:textSize="16dp"
253 - app:chipBackgroundColor="#C6FFFFFF" /> 253 + app:chipBackgroundColor="#FFFFFF" />
254 </com.google.android.material.chip.ChipGroup> 254 </com.google.android.material.chip.ChipGroup>
255 255
256 <com.google.android.material.chip.ChipGroup 256 <com.google.android.material.chip.ChipGroup
...@@ -266,7 +266,7 @@ ...@@ -266,7 +266,7 @@
266 android:text="# 중장년" 266 android:text="# 중장년"
267 android:textAppearance="@style/TextAppearance.AppCompat" 267 android:textAppearance="@style/TextAppearance.AppCompat"
268 android:textSize="16dp" 268 android:textSize="16dp"
269 - app:chipBackgroundColor="#C6FFFFFF" 269 + app:chipBackgroundColor="#FFFFFF"
270 app:chipIcon="@drawable/image01" /> 270 app:chipIcon="@drawable/image01" />
271 271
272 <com.google.android.material.chip.Chip 272 <com.google.android.material.chip.Chip
...@@ -277,7 +277,7 @@ ...@@ -277,7 +277,7 @@
277 android:text="# 노년" 277 android:text="# 노년"
278 android:textAppearance="@style/TextAppearance.AppCompat" 278 android:textAppearance="@style/TextAppearance.AppCompat"
279 android:textSize="16dp" 279 android:textSize="16dp"
280 - app:chipBackgroundColor="#C6FFFFFF" /> 280 + app:chipBackgroundColor="#FFFFFF" />
281 281
282 </com.google.android.material.chip.ChipGroup> 282 </com.google.android.material.chip.ChipGroup>
283 </com.google.android.material.chip.ChipGroup> 283 </com.google.android.material.chip.ChipGroup>
......