soonmyeong2

info design complete

Showing 1000 changed files with 394 additions and 14 deletions

Too many changes to show.

To preserve performance only 1000 of 1000+ files are displayed.

...@@ -30,14 +30,19 @@ ...@@ -30,14 +30,19 @@
30 <activity android:name=".InputProfilFirstFourActivity" /> 30 <activity android:name=".InputProfilFirstFourActivity" />
31 <activity android:name=".InputProfilFirstThreeActivity" /> 31 <activity android:name=".InputProfilFirstThreeActivity" />
32 <activity android:name=".InputProfilFirstTwoActivity" /> 32 <activity android:name=".InputProfilFirstTwoActivity" />
33 - <activity android:name=".FragmentActivity" />
34 - <activity android:name=".FragmentLayout" />
35 <activity android:name=".InputProfilFirstOneActivity" /> 33 <activity android:name=".InputProfilFirstOneActivity" />
34 + <activity android:name=".PrivacyPolicyActivity"/>
35 + <activity android:name=".TermsOfUserActivity"/>
36 + <activity android:name=".NoticeActivity"/>
37 + <activity android:name=".QuestionsActivity"/>
36 <activity android:name=".WelcomeActivity" /> 38 <activity android:name=".WelcomeActivity" />
39 + <activity android:name=".PushInfoActivity"/>
37 <activity android:name=".SettingActivity" /> 40 <activity android:name=".SettingActivity" />
41 + <activity android:name=".TermsDetailActivity"/>
38 <activity android:name=".DetailActivity" /> 42 <activity android:name=".DetailActivity" />
39 <activity android:name=".InfoActivity" /> 43 <activity android:name=".InfoActivity" />
40 <activity android:name=".FavoritesActivity" /> 44 <activity android:name=".FavoritesActivity" />
45 + <activity android:name=".SettingsInForm"/>
41 <activity android:name=".RecommendActivity" /> 46 <activity android:name=".RecommendActivity" />
42 <activity android:name=".SignInActivity" /> 47 <activity android:name=".SignInActivity" />
43 <activity android:name=".SignUpActivity" /> 48 <activity android:name=".SignUpActivity" />
......
...@@ -14,6 +14,7 @@ import android.widget.Toast ...@@ -14,6 +14,7 @@ import android.widget.Toast
14 import kotlinx.android.synthetic.main.activity_info.* 14 import kotlinx.android.synthetic.main.activity_info.*
15 import android.graphics.drawable.ColorDrawable 15 import android.graphics.drawable.ColorDrawable
16 import androidx.core.content.ContextCompat 16 import androidx.core.content.ContextCompat
17 +import kotlinx.android.synthetic.main.activity_settings_in_form.*
17 18
18 class InfoActivity : AppCompatActivity() { 19 class InfoActivity : AppCompatActivity() {
19 20
...@@ -26,32 +27,41 @@ class InfoActivity : AppCompatActivity() { ...@@ -26,32 +27,41 @@ class InfoActivity : AppCompatActivity() {
26 getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); 27 getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
27 getWindow().setStatusBarColor(getResources().getColor(R.color.infomainColor)); 28 getWindow().setStatusBarColor(getResources().getColor(R.color.infomainColor));
28 } 29 }
30 +
29 val prof: SharedPreferences =getSharedPreferences("profdata", Context.MODE_PRIVATE) 31 val prof: SharedPreferences =getSharedPreferences("profdata", Context.MODE_PRIVATE)
30 val editor: SharedPreferences.Editor=prof.edit() 32 val editor: SharedPreferences.Editor=prof.edit()
31 33
32 Toast.makeText(applicationContext,prof.getString("manorwoman","nothing"), 34 Toast.makeText(applicationContext,prof.getString("manorwoman","nothing"),
33 Toast.LENGTH_SHORT).show() 35 Toast.LENGTH_SHORT).show()
34 36
35 - //temp 37 + InfoProfilModify.setOnClickListener {
36 - var accountImage: ImageView =findViewById(R.id.infoAccountImage) 38 + var intent = Intent(this, SettingActivity::class.java)
37 - 39 + startActivity(intent)
38 - accountImage.setImageResource(R.drawable.image01) 40 + }
39 41
40 - //temp 42 + InfoButtonSettings.setOnClickListener {
43 + var intent = Intent(this, SettingsInForm::class.java)
44 + startActivity(intent)
45 + // 설정 눌렀을 때
46 + }
41 47
42 - InfoButtonLaw.setOnClickListener { 48 + InfoButtonNotice.setOnClickListener {
43 - var intent = Intent(this, SettingActivity::class.java) 49 + var intent = Intent(this, NoticeActivity::class.java)
50 + startActivity(intent)
51 + }
52 + InfoButtonFAQ.setOnClickListener {
53 + var intent = Intent(this, QuestionsActivity::class.java)
44 startActivity(intent) 54 startActivity(intent)
45 } 55 }
46 56
47 //pushing test start 57 //pushing test start
48 - InfoButtonSettings.setOnClickListener { 58 + // InfoButtonSettings.setOnClickListener {
49 - //var intent = Intent(this, SettingActivity::class.java) 59 + // //var intent = Intent(this, SettingActivity::class.java)
50 //test start 60 //test start
51 - var intent = Intent(this, InputProfilFirstOneActivity::class.java) 61 + // var intent = Intent(this, InputProfilFirstOneActivity::class.java)
52 //test end 62 //test end
53 - startActivity(intent) 63 + // startActivity(intent)
54 - } 64 + // }
55 //pushing test end 65 //pushing test end
56 } 66 }
57 } 67 }
......
1 +package com.example.vip
2 +
3 +import android.content.Intent
4 +import androidx.appcompat.app.AppCompatActivity
5 +import android.os.Bundle
6 +import kotlinx.android.synthetic.main.activity_notice.*
7 +
8 +class NoticeActivity : AppCompatActivity() {
9 +
10 + override fun onCreate(savedInstanceState: Bundle?) {
11 + super.onCreate(savedInstanceState)
12 + setContentView(R.layout.activity_notice)
13 +
14 +
15 + }
16 +}
This diff is collapsed. Click to expand it.
1 +package com.example.vip
2 +
3 +import android.content.Intent
4 +import androidx.appcompat.app.AppCompatActivity
5 +import android.os.Bundle
6 +import kotlinx.android.synthetic.main.activity_push_alarm.*
7 +
8 +class PushInfoActivity : AppCompatActivity() {
9 +
10 + override fun onCreate(savedInstanceState: Bundle?) {
11 + super.onCreate(savedInstanceState)
12 + setContentView(R.layout.activity_push_alarm)
13 +
14 +
15 + }
16 +}
1 +package com.example.vip
2 +
3 +import android.content.Context
4 +import android.view.LayoutInflater
5 +import android.view.View
6 +import android.view.ViewGroup
7 +import android.widget.ImageView
8 +import android.widget.TextView
9 +import androidx.core.view.isGone
10 +import androidx.recyclerview.widget.RecyclerView
11 +import kotlinx.android.synthetic.main.qna_rv_item.view.*
12 +
13 +
14 +class QnAAdapter : RecyclerView.Adapter<QnAAdapter.MainViewHolder>() {
15 +
16 + var items: MutableList<QnAItem> = mutableListOf(
17 + QnAItem("1. 버그가 있어요.", "\n사용 중에 버그를 발견하셨다면\n" +
18 + "‘wello.khu@gmail.com’을 통해 건의해주세요.\n" +
19 + "보다 나은 서비스를 제공하기 위해 늘 노력하는 wello팀이 되도록 노력하겠습니다.\n", "asdf"),
20 + QnAItem("2. 회원탈퇴는 어떻게 하나요?", "\n아래 메뉴를 통해 회원탈퇴가 가능합니다.\n" +
21 + "\n" +
22 + "홈 화면 오른쪽 하단의 \n" +
23 + "내 정보> 설정 > 계정설정 > 회원탈퇴 \n" +
24 + "\n" +
25 + "wello 서비스에 불편한 점을 느끼셨다면\n" +
26 + "회원탈퇴 경로 및 wello.khu@gmail.com를 통해 건의해주세요.\n" +
27 + "보다 나은 서비스를 제공하기 위해 늘 노력하는 wello팀이 되도록 노력하겠습니다.\n", "asdff"),
28 + QnAItem("3. 'Wello'가 무슨 뜻인가요?", "\n‘Wello’는 ‘복지(Welfare) + 안녕(Hello)’의 합성어로, \n" +
29 + "\n" +
30 + "1) 당신만을 위한 복지정보를 만날 수 있는 어플리케이션\n" +
31 + "2) 전국민의 복지의 안녕을 챙기는 어플리케이션\n" +
32 + "\n" +
33 + "이 되겠다는 Wello의 다짐을 담고 있습니다.\n", "asdff"),
34 + QnAItem("4. 'Wello'는 어떤 어플인가요?", "\nWello는 복지정책알림 통합 어플리케이션으로, 사용자에게 적합한 복지정책을 알려주는 서비스를 제공합니다. \n 주요 기능으로는 1) 프로필 정보 입력 2) 추천정책리스트 3) 정책 찜하기 4) 푸시알림 등이 있습니다.\n", "asdff"),
35 + QnAItem("5. 프로필정보를 왜 수집하나요?", "\n수집한 사용자의 프로필정보는 보다 정확한 복지정책을 추천하기 위해 사용됩니다.\n", "asdff"),
36 + QnAItem("6. 추천정책리스트는 어떤 서비스인가요?", "\n추천정책리스트를 통해 자신이 수혜 받을 수 있는 정책 정보를 한 눈에 확인할 수 있습니다.\n", "asdff"),
37 + QnAItem("7. 푸시 알림설정/해제는 어떻게 하나요?", "\n아래 메뉴를 통해 푸시 알림설정/해제를 할 수 있습니다.\n" +
38 + "\n" +
39 + "홈 화면 오른쪽 하단의 \n" +
40 + "내 정보> 설정> 푸시 알림> 찜한 목록 소식받기에서 설정/해제 가능합니다.\n", "asdff"),
41 + QnAItem("8. 푸시 알림은 어떤 내용인가요?", "\n‘사용자의 찜한 목록에 있는 정책의 마감일’과 ‘새로 업데이트된 정책’에 대한 내용이 알림으로 가게 됩니다.\n", "asdff"),
42 + QnAItem("9. 푸시 알림은 언제 받을 수 있나요?", "\n푸시 알림은 3일에 한 번씩, 9:00~18:00 사이에 보내드립니다.\n", "asdff"),
43 + QnAItem("10. 정책 찜하기는 어떤 기능인가요?", "\n마감일을 확인하고 싶은 정책, 좀 더 관심이 가는 정책 등 사용자가 한 번 더 확인하고 싶은 정책을 체크해두는 기능입니다.\n", "asdff"),
44 +
45 + QnAItem("11. 민간 복지서비스 등록은 어떻게 하나요?", "\n현재 서비스 준비 중에 있습니다.\n", "adffff"))
46 +
47 + override fun onCreateViewHolder(parent: ViewGroup, p1: Int) = MainViewHolder(parent)
48 +
49 +
50 + override fun getItemCount(): Int = items.size
51 +
52 + override fun onBindViewHolder(holer: MainViewHolder, position: Int) {
53 + items[position].let { item ->
54 + with(holer) {
55 + tvTitle.text = item.answer
56 + tvContent.text = item.question
57 + tvSecond.setOnClickListener{
58 + tvTitle.setVisibility(View.GONE)
59 + }
60 +
61 +/* if (item.arrow != "") {
62 + val resourceId = context.resources.getIdentifier(dog.photo, "drawable", context.packageName)
63 + tvSecond?.setImageResource(resourceId)
64 + } else {
65 + tvSecond?.setImageResource(R.mipmap.ic_launcher)
66 + }*/
67 + }
68 + }
69 + }
70 +
71 + inner class MainViewHolder(parent: ViewGroup) : RecyclerView.ViewHolder(
72 + LayoutInflater.from(parent.context).inflate(R.layout.qna_rv_item, parent, false)) {
73 + val tvTitle = itemView.answerText
74 + val tvContent = itemView.questionText
75 + val tvSecond = itemView.bottomArrow
76 + }
77 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.example.vip
2 +
3 +class QnAItem (val question: String, val answer: String, val arrow: String)
...\ No newline at end of file ...\ No newline at end of file
1 +package com.example.vip
2 +
3 +import android.content.Intent
4 +import androidx.appcompat.app.AppCompatActivity
5 +import android.os.Bundle
6 +import androidx.recyclerview.widget.LinearLayoutManager
7 +import kotlinx.android.synthetic.main.activity_questions.*
8 +
9 +var QnAList = arrayListOf<QnAItem>()
10 +
11 +class QuestionsActivity : AppCompatActivity() {
12 +
13 + override fun onCreate(savedInstanceState: Bundle?) {
14 + super.onCreate(savedInstanceState)
15 + setContentView(R.layout.activity_questions)
16 +
17 + qna_rv.adapter = QnAAdapter()
18 + qna_rv.layoutManager = LinearLayoutManager(this)
19 +
20 + }
21 +}
1 +package com.example.vip
2 +
3 +import android.content.Intent
4 +import androidx.appcompat.app.AppCompatActivity
5 +import android.os.Bundle
6 +import kotlinx.android.synthetic.main.activity_settings_in_form.*
7 +
8 +class SettingsInForm : AppCompatActivity() {
9 +
10 + override fun onCreate(savedInstanceState: Bundle?) {
11 + super.onCreate(savedInstanceState)
12 + setContentView(R.layout.activity_settings_in_form)
13 +
14 +
15 + info_push.setOnClickListener {
16 + var intent = Intent(this, PushInfoActivity::class.java)
17 + startActivity(intent)
18 + // 설정 눌렀을 때
19 + }
20 + terms_of_use.setOnClickListener{
21 + var intent = Intent(this, TermsOfUserActivity::class.java)
22 + startActivity(intent)
23 + }
24 + }
25 +}
This diff is collapsed. Click to expand it.
1 +package com.example.vip
2 +
3 +import android.content.Intent
4 +import androidx.appcompat.app.AppCompatActivity
5 +import android.os.Bundle
6 +import kotlinx.android.synthetic.main.activity_terms_of_use.*
7 +
8 +class TermsOfUserActivity : AppCompatActivity() {
9 +
10 + override fun onCreate(savedInstanceState: Bundle?) {
11 + super.onCreate(savedInstanceState)
12 + setContentView(R.layout.activity_terms_of_use)
13 +
14 + terms_use.setOnClickListener{
15 + var intent = Intent(this, TermsDetailActivity::class.java)
16 + startActivity(intent)
17 + }
18 + terms_use2.setOnClickListener {
19 + var intent = Intent(this, PrivacyPolicyActivity::class.java)
20 + startActivity(intent)
21 + }
22 + }
23 +}
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 + <!-- 배경 -->
4 + <item
5 + android:drawable="@color/colorPrimary"/>
6 + <!-- 로고 -->
7 + <item>
8 + <bitmap
9 + android:gravity="center"
10 + android:src="@drawable/splash_main"/>
11 + </item>
12 +</layer-list>
1 +<vector xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:aapt="http://schemas.android.com/aapt"
3 + android:width="108dp"
4 + android:height="108dp"
5 + android:viewportWidth="108"
6 + android:viewportHeight="108">
7 + <path
8 + android:fillType="evenOdd"
9 + android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
10 + android:strokeWidth="1"
11 + android:strokeColor="#00000000">
12 + <aapt:attr name="android:fillColor">
13 + <gradient
14 + android:endX="78.5885"
15 + android:endY="90.9159"
16 + android:startX="48.7653"
17 + android:startY="61.0927"
18 + android:type="linear">
19 + <item
20 + android:color="#44000000"
21 + android:offset="0.0" />
22 + <item
23 + android:color="#00000000"
24 + android:offset="1.0" />
25 + </gradient>
26 + </aapt:attr>
27 + </path>
28 + <path
29 + android:fillColor="#FFFFFF"
30 + android:fillType="nonZero"
31 + android:pathData="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
32 + android:strokeWidth="1"
33 + android:strokeColor="#00000000" />
34 +</vector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 + <!-- 배경 -->
4 + <item
5 + android:drawable="@color/colorPrimary"/>
6 + <!-- 로고 -->
7 + <item>
8 + <bitmap
9 + android:gravity="center"
10 + android:src="@drawable/splash_main"/>
11 + </item>
12 +</layer-list>
1 +<vector xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:aapt="http://schemas.android.com/aapt"
3 + android:width="108dp"
4 + android:height="108dp"
5 + android:viewportWidth="108"
6 + android:viewportHeight="108">
7 + <path
8 + android:fillType="evenOdd"
9 + android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
10 + android:strokeWidth="1"
11 + android:strokeColor="#00000000">
12 + <aapt:attr name="android:fillColor">
13 + <gradient
14 + android:endX="78.5885"
15 + android:endY="90.9159"
16 + android:startX="48.7653"
17 + android:startY="61.0927"
18 + android:type="linear">
19 + <item
20 + android:color="#44000000"
21 + android:offset="0.0" />
22 + <item
23 + android:color="#00000000"
24 + android:offset="1.0" />
25 + </gradient>
26 + </aapt:attr>
27 + </path>
28 + <path
29 + android:fillColor="#FFFFFF"
30 + android:fillType="nonZero"
31 + android:pathData="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
32 + android:strokeWidth="1"
33 + android:strokeColor="#00000000" />
34 +</vector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 + <!-- 배경 -->
4 + <item
5 + android:drawable="@color/colorPrimary"/>
6 + <!-- 로고 -->
7 + <item>
8 + <bitmap
9 + android:gravity="center"
10 + android:src="@drawable/splash_main"/>
11 + </item>
12 +</layer-list>
1 +<vector xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:aapt="http://schemas.android.com/aapt"
3 + android:width="108dp"
4 + android:height="108dp"
5 + android:viewportWidth="108"
6 + android:viewportHeight="108">
7 + <path
8 + android:fillType="evenOdd"
9 + android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
10 + android:strokeWidth="1"
11 + android:strokeColor="#00000000">
12 + <aapt:attr name="android:fillColor">
13 + <gradient
14 + android:endX="78.5885"
15 + android:endY="90.9159"
16 + android:startX="48.7653"
17 + android:startY="61.0927"
18 + android:type="linear">
19 + <item
20 + android:color="#44000000"
21 + android:offset="0.0" />
22 + <item
23 + android:color="#00000000"
24 + android:offset="1.0" />
25 + </gradient>
26 + </aapt:attr>
27 + </path>
28 + <path
29 + android:fillColor="#FFFFFF"
30 + android:fillType="nonZero"
31 + android:pathData="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
32 + android:strokeWidth="1"
33 + android:strokeColor="#00000000" />
34 +</vector>
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 + <!-- 배경 -->
4 + <item
5 + android:drawable="@color/colorPrimary"/>
6 + <!-- 로고 -->
7 + <item>
8 + <bitmap
9 + android:gravity="center"
10 + android:src="@drawable/splash_main"/>
11 + </item>
12 +</layer-list>
1 +<vector xmlns:android="http://schemas.android.com/apk/res/android"
2 + xmlns:aapt="http://schemas.android.com/aapt"
3 + android:width="108dp"
4 + android:height="108dp"
5 + android:viewportWidth="108"
6 + android:viewportHeight="108">
7 + <path
8 + android:fillType="evenOdd"
9 + android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
10 + android:strokeWidth="1"
11 + android:strokeColor="#00000000">
12 + <aapt:attr name="android:fillColor">
13 + <gradient
14 + android:endX="78.5885"
15 + android:endY="90.9159"
16 + android:startX="48.7653"
17 + android:startY="61.0927"
18 + android:type="linear">
19 + <item
20 + android:color="#44000000"
21 + android:offset="0.0" />
22 + <item
23 + android:color="#00000000"
24 + android:offset="1.0" />
25 + </gradient>
26 + </aapt:attr>
27 + </path>
28 + <path
29 + android:fillColor="#FFFFFF"
30 + android:fillType="nonZero"
31 + android:pathData="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
32 + android:strokeWidth="1"
33 + android:strokeColor="#00000000" />
34 +</vector>
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.