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 | +} |
1 | +package com.example.vip | ||
2 | + | ||
3 | +import android.content.Intent | ||
4 | +import androidx.appcompat.app.AppCompatActivity | ||
5 | +import android.os.Bundle | ||
6 | +import android.webkit.WebView | ||
7 | +import kotlinx.android.synthetic.main.activity_privacy_policy.* | ||
8 | + | ||
9 | +class PrivacyPolicyActivity : AppCompatActivity() { | ||
10 | + | ||
11 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
12 | + super.onCreate(savedInstanceState) | ||
13 | + setContentView(R.layout.activity_privacy_policy) | ||
14 | + | ||
15 | + val web : WebView = findViewById(R.id.privacy) | ||
16 | + val summary = "<Wello> 개인정보 처리방침\n" + | ||
17 | + "\n" + | ||
18 | + " <Wello>는 개인정보 보호법 제30조에 따라 정보주체의 개인정보를 보호하고 이와 관련한 고충을 신속하고 원활하게 처리할 수 있도록 하기 위하여 다음과 같이 개인정보 처리지침을 수립․공개합니다. \n" + | ||
19 | + "\n" + | ||
20 | + "제1조(개인정보의 처리목적) Wello는 다음의 목적을 위하여 개인정보를 처리합니다. 처리하고 있는 개인정보는 다음의 목적 이외의 용도로는 이용되지 않으며, 이용 목적이 변경되는 경우에는 개인정보 보호법 제18조에 따라 별도의 동의를 받는 등 필요한 조치를 이행할 예정입니다. \n" + | ||
21 | + "\n" + | ||
22 | + " 1. 홈페이지 회원 가입 및 관리 \n" + | ||
23 | + " 회원 가입의사 확인, 회원제 서비스 제공에 따른 본인 식별․인증, 회원자격 유지․관리, 제한적 본인확인제 시행에 따른 본인확인, 서비스 부정이용 방지, 만 14세 미만 아동의 개인정보 처리시 법정대리인의 동의여부 확인, 각종 고지․통지, 고충처리 등을 목적으로 개인정보를 처리합니다. \n" + | ||
24 | + " 2. 재화 또는 서비스 제공 \n" + | ||
25 | + " 서비스 제공, 계약서․청구서 발송, 콘텐츠 제공, 맞춤서비스 제공, 본인인증, 연령인증 등을 목적으로 개인정보를 처리합니다. \n" + | ||
26 | + " 3. 회원정보\t\n" + | ||
27 | + " 근거: 사회보장급여의 이용.제공 및 수급권자 발굴에 관한 법률 제25조(대국민포털 구축 등), 동법 시행령 27조(민감정보 및 고유식별정보 처리)\n" + | ||
28 | + " 목적: 개인별 맞춤형 복지서비스 정보 등 회원제 서비스 이용, 복지서비스 상세 검색 이력 저장 및 확인\n" + | ||
29 | + " 4. 고충처리 \n" + | ||
30 | + " 민원인의 신원 확인, 민원사항 확인, 사실조사를 위한 연락․통지, 처리결과 통보 등의 목적으로 개인정보를 처리합니다. \n" + | ||
31 | + "\n" + | ||
32 | + "\n" + | ||
33 | + "\n" + | ||
34 | + "\n" + | ||
35 | + "\n" + | ||
36 | + "\n" + | ||
37 | + " 제2조(개인정보의 처리 및 보유기간) ① Wello는 법령에 따른 개인정보 보유․이용기간 또는 정보주체로부터 개인정보를 수집시에 동의받은 개인정보 보유․이용기간 내에서 개인정보를 처리․보유합니다. \n" + | ||
38 | + "\n" + | ||
39 | + " ② 각각의 개인정보 처리 및 보유 기간은 다음과 같습니다. \n" + | ||
40 | + "\n" + | ||
41 | + " 1. 홈페이지 회원 가입 및 관리 : 사업자/단체 홈페이지 탈퇴시까지 \n" + | ||
42 | + " 다만, 다음의 사유에 해당하는 경우에는 해당 사유 종료 시까지 \n" + | ||
43 | + " 1) 관계 법령 위반에 따른 수사․조사 등이 진행 중인 경우에는 해당 수사․조사 종료 시까지 \n" + | ||
44 | + " 2) 홈페이지 이용에 따른 채권․채무관계 잔존 시에는 해당 채권․채무관계 정산 시까지 \n" + | ||
45 | + "\n" + | ||
46 | + " 2. 재화 또는 서비스 제공 : 재화․서비스 공급완료 및 요금결제․정산 완료시까지\n" + | ||
47 | + " 다만, 다음의 사유에 해당하는 경우에는 해당 기간 종료 시까지 \n" + | ||
48 | + " 1) 「전자상거래 등에서의 소비자 보호에 관한 법률」에 따른 표시․광고, 계약내용 및 이행 등 거래에 관한 기록 \n" + | ||
49 | + " - 표시․광고에 관한 기록 : 6월 \n" + | ||
50 | + " - 계약 또는 청약철회, 대금결제, 재화 등의 공급기록 : 5년 \n" + | ||
51 | + " - 소비자 불만 또는 분쟁처리에 관한 기록 : 3년 \n" + | ||
52 | + " 2) 「통신비밀보호법」제41조에 따른 통신사실확인자료 보관\n" + | ||
53 | + " - 가입자 전기통신일시, 개시․종료시간, 상대방 가입자번호, 사용도수, 발신기지국 위치추적자료 : 1년 \n" + | ||
54 | + " - 컴퓨터통신, 인터넷 로그기록자료, 접속지 추적자료 : 3개월\n" + | ||
55 | + "\n" + | ||
56 | + " 제3조(정보주체의 권리․의무 및 행사방법) ① 정보주체는 Wello에 대해 언제든지 다음 각 호의 개인정보 보호 관련 권리를 행사할 수 있습니다. \n" + | ||
57 | + " 1. 개인정보 열람요구\n" + | ||
58 | + " 2. 오류 등이 있을 경우 정정 요구\n" + | ||
59 | + " 3. 삭제요구 \n" + | ||
60 | + " 4. 처리정지 요구 \n" + | ||
61 | + " ② 제1항에 따른 권리 행사는 Wello에 대해 서면, 전화, 전자우편, 모사전송(FAX) 등을 통하여 하실 수 있으며 Wello는 이에 대해 지체없이 조치하겠습니다. \n" + | ||
62 | + " ③ 정보주체가 개인정보의 오류 등에 대한 정정 또는 삭제를 요구한 경우에는 Wello는 정정 또는 삭제를 완료할 때까지 당해 개인정보를 이용하거나 제공하지 않습니다. \n" + | ||
63 | + " ④ 제1항에 따른 권리 행사는 정보주체의 법정대리인이나 위임을 받은 자 등 대리인을 통하여 하실 수 있습니다. 이 경우 개인정보 보호법 시행규칙 별지 제11호 서식에 따른 위임장을 제출하셔야 합니다. \n" + | ||
64 | + " ⑤ 정보주체는 개인정보 보호법 등 관계법령을 위반하여 Wello가 처리하고 있는 정보주체 본인이나 타인의 개인정보 및 사생활을 침해하여서는 아니됩니다. \n" + | ||
65 | + "\n" + | ||
66 | + " 제4조(처리하는 개인정보 항목) Wello는 다음의 개인정보 항목을 처리하고 있습니다. \n" + | ||
67 | + " 1. 홈페이지 회원 가입 및 관리 \n" + | ||
68 | + " ․필수항목 : 생년월일, 아이디, 비밀번호, 주소, 전화번호, 성별, 이메일주소 \n" + | ||
69 | + " ․선택항목 : 결혼여부, 관심분야 \n" + | ||
70 | + "\n" + | ||
71 | + " 2. 재화 또는 서비스 제공 \n" + | ||
72 | + " ․필수항목 : 생년월일, 아이디, 성별, 주소(주거지)\n" + | ||
73 | + " ․선택항목 : 생년월일, 아이디, 성별, 주소(주거지), 가족구성원, 가구상황, 월평균소득, 건강보험료, 재산, 관심분야\n" + | ||
74 | + "\n" + | ||
75 | + " 3. 인터넷 서비스 이용과정에서 아래 개인정보 항목이 자동으로 생성되어 수집될 수 있습니다. \n" + | ||
76 | + " ․IP주소, 쿠키, MAC주소, 서비스 이용기록, 방문기록, 불량 이용기록 등 \n" + | ||
77 | + "\n" + | ||
78 | + " 제5조(개인정보의 파기) ① Wello는 개인정보 보유기간의 경과, 처리목적 달성 등 개인정보가 불필요하게 되었을 때에는 지체없이 해당 개인정보를 파기합니다. \n" + | ||
79 | + " ② 정보주체로부터 동의받은 개인정보 보유기간이 경과하거나 처리목적이 달성되었음에도 불구하고 다른 법령에 따라 개인정보를 계속 보존하여야 하는 경우에는, 해당 개인정보를 별도의 데이터베이스(DB)로 옮기거나 보관장소를 달리하여 보존합니다. \n" + | ||
80 | + " ③ 개인정보 파기의 절차 및 방법은 다음과 같습니다. \n" + | ||
81 | + " 1. 파기절차 \n" + | ||
82 | + " Wello는 파기 사유가 발생한 개인정보를 선정하고, Wello의 개인정보 보호책임자의 승인을 받아 개인정보를 파기합니다. \n" + | ||
83 | + " 2. 파기방법 \n" + | ||
84 | + " Wello는 전자적 파일 형태로 기록․저장된 개인정보는 기록을 재생할 수 없도록 로우레밸포멧(Low Level Format) 등의 방법을 이용하여 파기하며, 종이 문서에 기록․저장된 개인정보는 분쇄기로 분쇄하거나 소각하여 파기합니다. \n" + | ||
85 | + "\n" + | ||
86 | + " 제6조(개인정보의 안전성 확보조치) Wello는 개인정보의 안전성 확보를 위해 다음과 같은 조치를 취하고 있습니다. \n" + | ||
87 | + " 1. 관리적 조치 : 내부관리계획 수립․시행, 정기적 직원 교육 등 \n" + | ||
88 | + " 2. 기술적 조치 : 개인정보처리시스템 등의 접근권한 관리, 접근통제시스템 설치, 고유식별정보 등의 암호화, 보안프로그램 설치 \n" + | ||
89 | + " 3. 물리적 조치 : 전산실, 자료보관실 등의 접근통제 \n" + | ||
90 | + "\n" + | ||
91 | + " 제7조(개인정보 자동 수집 장치의 설치∙운영 및 거부에 관한 사항) \n" + | ||
92 | + " ① Wello는 이용자에게 개별적인 맞춤서비스를 제공하기 위해 이용정보를 저장하고 수시로 불러오는 ‘쿠키(cookie)’를 사용합니다.\n" + | ||
93 | + " ② 쿠키는 웹사이트를 운영하는데 이용되는 서버(http)가 이용자의 컴퓨터 브라우저에게 보내는 소량의 정보이며 이용자들의 PC 컴퓨터내의 하드디스크에 저장되기도 합니다.\n" + | ||
94 | + " 가. 쿠키의 사용목적: 이용자가 방문한 각 서비스와 웹 사이트들에 대한 방문 및 이용형태, 인기 검색어, 보안접속 여부, 등을 파악하여 이용자에게 최적화된 정보 제공을 위해 사용됩니다.\n" + | ||
95 | + " 나. 쿠키의 설치∙운영 및 거부 : 웹브라우저 상단의 도구>인터넷 옵션>개인정보 메뉴의 옵션 설정을 통해 쿠키 저장을 거부 할 수 있습니다.\n" + | ||
96 | + " 다. 쿠키 저장을 거부할 경우 맞춤형 서비스 이용에 어려움이 발생할 수 있습니다.\n" + | ||
97 | + "\n" + | ||
98 | + " 제8조(개인정보 보호책임자) ① Wello는 개인정보 처리에 관한 업무를 총괄해서 책임지고, 개인정보 처리와 관련한 정보주체의 불만처리 및 피해구제 등을 위하여 아래와 같이 개인정보 보호책임자를 지정하고 있습니다. \n" + | ||
99 | + " ▶ 개인정보 보호책임자 \n" + | ||
100 | + " 성명 : 김유리안나\n" + | ||
101 | + " 직책 : 대표자\n" + | ||
102 | + " 연락처 : <010-8248-7729>, <lady192@naver.com>\n" + | ||
103 | + " ※ 개인정보 보호 담당부서로 연결됩니다. \n" + | ||
104 | + "\n" + | ||
105 | + " 제9조(권익침해 구제방법) 정보주체는 아래의 기관에 대해 개인정보 침해에 대한 피해구제, 상담 등을 문의하실 수 있습니다. \n" + | ||
106 | + "\n" + | ||
107 | + " <아래의 기관은 Wello와는 별개의 기관으로서, Wello의 자체적인 개인정보 불만처리, 피해구제 결과에 만족하지 못하시거나 보다 자세한 도움이 필요하시면 문의하여 주시기 바랍니다>\n" + | ||
108 | + " \n" + | ||
109 | + " ▶ 개인정보 침해신고센터 (한국인터넷진흥원 운영) \n" + | ||
110 | + " - 소관업무 : 개인정보 침해사실 신고, 상담 신청 \n" + | ||
111 | + " - 홈페이지 : privacy.kisa.or.kr \n" + | ||
112 | + " - 전화 : (국번없이) 118 \n" + | ||
113 | + " - 주소 : (58324) 전남 나주시 진흥길 9(빛가람동 301-2) 3층 개인정보침해신고센터\n" + | ||
114 | + "\n" + | ||
115 | + " ▶ 개인정보 분쟁조정위원회\n" + | ||
116 | + " - 소관업무 : 개인정보 분쟁조정신청, 집단분쟁조정 (민사적 해결) \n" + | ||
117 | + " - 홈페이지 : www.kopico.go.kr \n" + | ||
118 | + " - 전화 : (국번없이) 1833-6972\n" + | ||
119 | + " - 주소 : (03171)서울특별시 종로구 세종대로 209 정부서울청사 4층\n" + | ||
120 | + "\n" + | ||
121 | + " ▶ 대검찰청 사이버범죄수사단 : 02-3480-3573 (www.spo.go.kr)\n" + | ||
122 | + "\n" + | ||
123 | + " ▶ 경찰청 사이버안전국 : 182 (http://cyberbureau.police.go.kr)\n" + | ||
124 | + "\n" + | ||
125 | + " 제10조(개인정보 처리방침 변경) ① 이 개인정보 처리방침은 20XX. X. X부터 적용됩니다.\n" + | ||
126 | + " ② 이전의 개인정보 처리방침은 아래에서 확인하실 수 있습니다. \n" + | ||
127 | + " - 20XX. X. X ~ 20XX. X. X 적용 (클릭) \n" + | ||
128 | + " - 20XX. X. X ~ 20XX. X. X 적용 (클릭) \n" | ||
129 | + web.loadData(summary, "text/html", "UTF-8") | ||
130 | + | ||
131 | + } | ||
132 | +} |
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 | +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 | +} |
1 | +package com.example.vip | ||
2 | + | ||
3 | +import android.content.Intent | ||
4 | +import androidx.appcompat.app.AppCompatActivity | ||
5 | +import android.os.Bundle | ||
6 | +import android.webkit.WebView | ||
7 | +import kotlinx.android.synthetic.main.activity_terms_detail.* | ||
8 | + | ||
9 | +class TermsDetailActivity : AppCompatActivity() { | ||
10 | + | ||
11 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
12 | + super.onCreate(savedInstanceState) | ||
13 | + setContentView(R.layout.activity_terms_detail) | ||
14 | + | ||
15 | + val web : WebView = findViewById(R.id.use_terms) | ||
16 | + val summary = "전자상거래(인터넷사이버몰) 표준약관\n" + | ||
17 | + "\n" + | ||
18 | + "\n" + | ||
19 | + "제1조(목적) 이 약관은 WELLO 회사(전자상거래 사업자)가 운영하는 WELLO 사이버 몰(이하 “몰”이라 한다)에서 제공하는 인터넷 관련 서비스(이하 “서비스”라 한다)를 이용함에 있어 사이버 몰과 이용자의 권리․의무 및 책임사항을 규정함을 목적으로 합니다.\n" + | ||
20 | + "\n" + | ||
21 | + " ※「PC통신, 무선 등을 이용하는 전자상거래에 대해서도 그 성질에 반하지 않는 한 이 약관을 준용합니다.」\n" + | ||
22 | + "\n" + | ||
23 | + "제2조(정의)\n" + | ||
24 | + "\n" + | ||
25 | + " ① “몰”이란 WELLO 회사가 재화 또는 용역(이하 “재화 등”이라 함)을 이용자에게 제공하기 위하여 컴퓨터 등 정보통신설비를 이용하여 재화 등을 거래할 수 있도록 설정한 가상의 영업장을 말하며, 아울러 사이버몰을 운영하는 사업자의 의미로도 사용합니다.\n" + | ||
26 | + "\n" + | ||
27 | + " ② “이용자”란 “몰”에 접속하여 이 약관에 따라 “몰”이 제공하는 서비스를 받는 회원 및 비회원을 말합니다.\n" + | ||
28 | + "\n" + | ||
29 | + " ③ ‘회원’이라 함은 “몰”에 회원등록을 한 자로서, 계속적으로 “몰”이 제공하는 서비스를 이용할 수 있는 자를 말합니다.\n" + | ||
30 | + "\n" + | ||
31 | + " ④ ‘비회원’이라 함은 회원에 가입하지 않고 “몰”이 제공하는 서비스를 이용하는 자를 말합니다.\n" + | ||
32 | + "\n" + | ||
33 | + "제3조 (약관 등의 명시와 설명 및 개정) \n" + | ||
34 | + "\n" + | ||
35 | + " ① “몰”은 이 약관의 내용과 상호 및 대표자 성명, 영업소 소재지 주소(소비자의 불만을 처리할 수 있는 곳의 주소를 포함), 전화번호․모사전송번호․전자우편주소, 사업자등록번호, 통신판매업 신고번호, 개인정보관리책임자등을 이용자가 쉽게 알 수 있도록 WELLO 사이버몰의 초기 서비스화면(전면)에 게시합니다. 다만, 약관의 내용은 이용자가 연결화면을 통하여 볼 수 있도록 할 수 있습니다.\n" + | ||
36 | + "\n" + | ||
37 | + " ② “몰은 이용자가 약관에 동의하기에 앞서 약관에 정하여져 있는 내용 중 청약철회․배송책임․환불조건 등과 같은 중요한 내용을 이용자가 이해할 수 있도록 별도의 연결화면 또는 팝업화면 등을 제공하여 이용자의 확인을 구하여야 합니다.\n" + | ||
38 | + "\n" + | ||
39 | + " ③ “몰”은 「전자상거래 등에서의 소비자보호에 관한 법률」, 「약관의 규제에 관한 법률」, 「전자문서 및 전자거래기본법」, 「전자금융거래법」, 「전자서명법」, 「정보통신망 이용촉진 및 정보보호 등에 관한 법률」, 「방문판매 등에 관한 법률」, 「소비자기본법」 등 관련 법을 위배하지 않는 범위에서 이 약관을 개정할 수 있습니다.\n" + | ||
40 | + "\n" + | ||
41 | + " ④ “몰”이 약관을 개정할 경우에는 적용일자 및 개정사유를 명시하여 현행약관과 함께 몰의 초기화면에 그 적용일자 7일 이전부터 적용일자 전일까지 공지합니다. 다만, 이용자에게 불리하게 약관내용을 변경하는 경우에는 최소한 30일 이상의 사전 유예기간을 두고 공지합니다. 이 경우 \"몰“은 개정 전 내용과 개정 후 내용을 명확하게 비교하여 이용자가 알기 쉽도록 표시합니다. \n" + | ||
42 | + "\n" + | ||
43 | + " ⑤ “몰”이 약관을 개정할 경우에는 그 개정약관은 그 적용일자 이후에 체결되는 계약에만 적용되고 그 이전에 이미 체결된 계약에 대해서는 개정 전의 약관조항이 그대로 적용됩니다. 다만 이미 계약을 체결한 이용자가 개정약관 조항의 적용을 받기를 원하는 뜻을 제3항에 의한 개정약관의 공지기간 내에 “몰”에 송신하여 “몰”의 동의를 받은 경우에는 개정약관 조항이 적용됩니다.\n" + | ||
44 | + "\n" + | ||
45 | + " ⑥ 이 약관에서 정하지 아니한 사항과 이 약관의 해석에 관하여는 전자상거래 등에서의 소비자보호에 관한 법률, 약관의 규제 등에 관한 법률, 공정거래위원회가 정하는 전자상거래 등에서의 소비자 보호지침 및 관계법령 또는 상관례에 따릅니다.\n" + | ||
46 | + "\n" + | ||
47 | + "제4조(서비스의 제공 및 변경) \n" + | ||
48 | + "\n" + | ||
49 | + " ① “몰”은 다음과 같은 업무를 수행합니다.\n" + | ||
50 | + "\n" + | ||
51 | + " 1. 재화 또는 용역에 대한 정보 제공 및 구매계약의 체결\n" + | ||
52 | + " 2. 구매계약이 체결된 재화 또는 용역의 배송\n" + | ||
53 | + " 3. 기타 “몰”이 정하는 업무\n" + | ||
54 | + "\n" + | ||
55 | + " ② “몰”은 재화 또는 용역의 품절 또는 기술적 사양의 변경 등의 경우에는 장차 체결되는 계약에 의해 제공할 재화 또는 용역의 내용을 변경할 수 있습니다. 이 경우에는 변경된 재화 또는 용역의 내용 및 제공일자를 명시하여 현재의 재화 또는 용역의 내용을 게시한 곳에 즉시 공지합니다.\n" + | ||
56 | + "\n" + | ||
57 | + " ③ “몰”이 제공하기로 이용자와 계약을 체결한 서비스의 내용을 재화등의 품절 또는 기술적 사양의 변경 등의 사유로 변경할 경우에는 그 사유를 이용자에게 통지 가능한 주소로 즉시 통지합니다.\n" + | ||
58 | + "\n" + | ||
59 | + " ④ 전항의 경우 “몰”은 이로 인하여 이용자가 입은 손해를 배상합니다. 다만, “몰”이 고의 또는 과실이 없음을 입증하는 경우에는 그러하지 아니합니다.\n" + | ||
60 | + "\n" + | ||
61 | + "제5조(서비스의 중단) \n" + | ||
62 | + "\n" + | ||
63 | + " ① “몰”은 컴퓨터 등 정보통신설비의 보수점검․교체 및 고장, 통신의 두절 등의 사유가 발생한 경우에는 서비스의 제공을 일시적으로 중단할 수 있습니다.\n" + | ||
64 | + "\n" + | ||
65 | + " ② “몰”은 제1항의 사유로 서비스의 제공이 일시적으로 중단됨으로 인하여 이용자 또는 제3자가 입은 손해에 대하여 배상합니다. 단, “몰”이 고의 또는 과실이 없음을 입증하는 경우에는 그러하지 아니합니다.\n" + | ||
66 | + "\n" + | ||
67 | + " ③ 사업종목의 전환, 사업의 포기, 업체 간의 통합 등의 이유로 서비스를 제공할 수 없게 되는 경우에는 “몰”은 제8조에 정한 방법으로 이용자에게 통지하고 당초 “몰”에서 제시한 조건에 따라 소비자에게 보상합니다. 다만, “몰”이 보상기준 등을 고지하지 아니한 경우에는 이용자들의 마일리지 또는 적립금 등을 “몰”에서 통용되는 통화가치에 상응하는 현물 또는 현금으로 이용자에게 지급합니다.\n" + | ||
68 | + "\n" + | ||
69 | + "제6조(회원가입) \n" + | ||
70 | + "\n" + | ||
71 | + " ① 이용자는 “몰”이 정한 가입 양식에 따라 회원정보를 기입한 후 이 약관에 동의한다는 의사표시를 함으로서 회원가입을 신청합니다.\n" + | ||
72 | + "\n" + | ||
73 | + " ② “몰”은 제1항과 같이 회원으로 가입할 것을 신청한 이용자 중 다음 각 호에 해당하지 않는 한 회원으로 등록합니다.\n" + | ||
74 | + "\n" + | ||
75 | + " 1. 가입신청자가 이 약관 제7조제3항에 의하여 이전에 회원자격을 상실한 적이 있는 경우, 다만 제7조제3항에 의한 회원자격 상실 후 3년이 경과한 자로서 “몰”의 회원재가입 승낙을 얻은 경우에는 예외로 한다.\n" + | ||
76 | + " 2. 등록 내용에 허위, 기재누락, 오기가 있는 경우\n" + | ||
77 | + " 3. 기타 회원으로 등록하는 것이 “몰”의 기술상 현저히 지장이 있다고 판단되는 경우\n" + | ||
78 | + "\n" + | ||
79 | + " ③ 회원가입계약의 성립 시기는 “몰”의 승낙이 회원에게 도달한 시점으로 합니다.\n" + | ||
80 | + "\n" + | ||
81 | + " ④ 회원은 회원가입 시 등록한 사항에 변경이 있는 경우, 상당한 기간 이내에 “몰”에 대하여 회원정보 수정 등의 방법으로 그 변경사항을 알려야 합니다.\n" + | ||
82 | + "\n" + | ||
83 | + "제7조(회원 탈퇴 및 자격 상실 등) \n" + | ||
84 | + "\n" + | ||
85 | + " ① 회원은 “몰”에 언제든지 탈퇴를 요청할 수 있으며 “몰”은 즉시 회원탈퇴를 처리합니다.\n" + | ||
86 | + "\n" + | ||
87 | + " ② 회원이 다음 각 호의 사유에 해당하는 경우, “몰”은 회원자격을 제한 및 정지시킬 수 있습니다.\n" + | ||
88 | + "\n" + | ||
89 | + " 1. 가입 신청 시에 허위 내용을 등록한 경우\n" + | ||
90 | + " 2. “몰”을 이용하여 구입한 재화 등의 대금, 기타 “몰”이용에 관련하여 회원이 부담하는 채무를 기일에 지급하지 않는 경우\n" + | ||
91 | + " 3. 다른 사람의 “몰” 이용을 방해하거나 그 정보를 도용하는 등 전자상거래 질서를 위협하는 경우\n" + | ||
92 | + " 4. “몰”을 이용하여 법령 또는 이 약관이 금지하거나 공서양속에 반하는 행위를 하는 경우\n" + | ||
93 | + "\n" + | ||
94 | + " ③ “몰”이 회원 자격을 제한․정지 시킨 후, 동일한 행위가 2회 이상 반복되거나 30일 이내에 그 사유가 시정되지 아니하는 경우 “몰”은 회원자격을 상실시킬 수 있습니다.\n" + | ||
95 | + "\n" + | ||
96 | + " ④ “몰”이 회원자격을 상실시키는 경우에는 회원등록을 말소합니다. 이 경우 회원에게 이를 통지하고, 회원등록 말소 전에 최소한 30일 이상의 기간을 정하여 소명할 기회를 부여합니다.\n" + | ||
97 | + "\n" + | ||
98 | + "제8조(회원에 대한 통지)\n" + | ||
99 | + "\n" + | ||
100 | + " ① “몰”이 회원에 대한 통지를 하는 경우, 회원이 “몰”과 미리 약정하여 지정한 전자우편 주소로 할 수 있습니다.\n" + | ||
101 | + "\n" + | ||
102 | + " ② “몰”은 불특정다수 회원에 대한 통지의 경우 1주일이상 “몰” 게시판에 게시함으로서 개별 통지에 갈음할 수 있습니다. 다만, 회원 본인의 거래와 관련하여 중대한 영향을 미치는 사항에 대하여는 개별통지를 합니다.\n" + | ||
103 | + "\n" + | ||
104 | + "제9조(구매신청 및 개인정보 제공 동의 등) \n" + | ||
105 | + "\n" + | ||
106 | + " ① “몰”이용자는 “몰”상에서 다음 또는 이와 유사한 방법에 의하여 구매를 신청하며, “몰”은 이용자가 구매신청을 함에 있어서 다음의 각 내용을 알기 쉽게 제공하여야 합니다. \n" + | ||
107 | + " 1. 재화 등의 검색 및 선택\n" + | ||
108 | + " 2. 받는 사람의 성명, 주소, 전화번호, 전자우편주소(또는 이동전화번호) 등의 입력\n" + | ||
109 | + " 3. 약관내용, 청약철회권이 제한되는 서비스, 배송료․설치비 등의 비용부담과 관련한 내용에 대한 확인\n" + | ||
110 | + " 4. 이 약관에 동의하고 위 3.호의 사항을 확인하거나 거부하는 표시\n" + | ||
111 | + " (예, 마우스 클릭)\n" + | ||
112 | + " 5. 재화등의 구매신청 및 이에 관한 확인 또는 “몰”의 확인에 대한 동의\n" + | ||
113 | + " 6. 결제방법의 선택\n" + | ||
114 | + "\n" + | ||
115 | + " ② “몰”이 제3자에게 구매자 개인정보를 제공할 필요가 있는 경우 1) 개인정보를 제공받는 자, 2)개인정보를 제공받는 자의 개인정보 이용목적, 3) 제공하는 개인정보의 항목, 4) 개인정보를 제공받는 자의 개인정보 보유 및 이용기간을 구매자에게 알리고 동의를 받아야 합니다. (동의를 받은 사항이 변경되는 경우에도 같습니다.)\n" + | ||
116 | + "\n" + | ||
117 | + "\n" + | ||
118 | + " ③ “몰”이 제3자에게 구매자의 개인정보를 취급할 수 있도록 업무를 위탁하는 경우에는 1) 개인정보 취급위탁을 받는 자, 2) 개인정보 취급위탁을 하는 업무의 내용을 구매자에게 알리고 동의를 받아야 합니다. (동의를 받은 사항이 변경되는 경우에도 같습니다.) 다만, 서비스제공에 관한 계약이행을 위해 필요하고 구매자의 편의증진과 관련된 경우에는 「정보통신망 이용촉진 및 정보보호 등에 관한 법률」에서 정하고 있는 방법으로 개인정보 취급방침을 통해 알림으로써 고지절차와 동의절차를 거치지 않아도 됩니다.\n" + | ||
119 | + "\n" + | ||
120 | + "\n" + | ||
121 | + "제10조 (계약의 성립)\n" + | ||
122 | + "\n" + | ||
123 | + " ① “몰”은 제9조와 같은 구매신청에 대하여 다음 각 호에 해당하면 승낙하지 않을 수 있습니다. 다만, 미성년자와 계약을 체결하는 경우에는 법정대리인의 동의를 얻지 못하면 미성년자 본인 또는 법정대리인이 계약을 취소할 수 있다는 내용을 고지하여야 합니다.\n" + | ||
124 | + "\n" + | ||
125 | + " 1. 신청 내용에 허위, 기재누락, 오기가 있는 경우\n" + | ||
126 | + " 2. 미성년자가 담배, 주류 등 청소년보호법에서 금지하는 재화 및 용역을 구매하는 경우\n" + | ||
127 | + " 3. 기타 구매신청에 승낙하는 것이 “몰” 기술상 현저히 지장이 있다고 판단하는 경우\n" + | ||
128 | + "\n" + | ||
129 | + " ② “몰”의 승낙이 제12조제1항의 수신확인통지형태로 이용자에게 도달한 시점에 계약이 성립한 것으로 봅니다.\n" + | ||
130 | + "\n" + | ||
131 | + " ③ “몰”의 승낙의 의사표시에는 이용자의 구매 신청에 대한 확인 및 판매가능 여부, 구매신청의 정정 취소 등에 관한 정보 등을 포함하여야 합니다.\n" + | ||
132 | + "\n" + | ||
133 | + "제11조(지급방법) “몰”에서 구매한 재화 또는 용역에 대한 대금지급방법은 다음 각 호의 방법중 가용한 방법으로 할 수 있습니다. 단, “몰”은 이용자의 지급방법에 대하여 재화 등의 대금에 어떠한 명목의 수수료도 추가하여 징수할 수 없습니다.\n" + | ||
134 | + "\n" + | ||
135 | + " 1. 폰뱅킹, 인터넷뱅킹, 메일 뱅킹 등의 각종 계좌이체 \n" + | ||
136 | + " 2. 선불카드, 직불카드, 신용카드 등의 각종 카드 결제\n" + | ||
137 | + " 3. 온라인무통장입금\n" + | ||
138 | + " 4. 전자화폐에 의한 결제\n" + | ||
139 | + " 5. 수령 시 대금지급\n" + | ||
140 | + " 6. 마일리지 등 “몰”이 지급한 포인트에 의한 결제\n" + | ||
141 | + " 7. “몰”과 계약을 맺었거나 “몰”이 인정한 상품권에 의한 결제 \n" + | ||
142 | + " 8. 기타 전자적 지급 방법에 의한 대금 지급 등\n" + | ||
143 | + "\n" + | ||
144 | + "제12조(수신확인통지․구매신청 변경 및 취소)\n" + | ||
145 | + "\n" + | ||
146 | + " ① “몰”은 이용자의 구매신청이 있는 경우 이용자에게 수신확인통지를 합니다.\n" + | ||
147 | + "\n" + | ||
148 | + " ② 수신확인통지를 받은 이용자는 의사표시의 불일치 등이 있는 경우에는 수신확인통지를 받은 후 즉시 구매신청 변경 및 취소를 요청할 수 있고 “몰”은 배송 전에 이용자의 요청이 있는 경우에는 지체 없이 그 요청에 따라 처리하여야 합니다. 다만 이미 대금을 지불한 경우에는 제15조의 청약철회 등에 관한 규정에 따릅니다.\n" + | ||
149 | + "\n" + | ||
150 | + "제13조(재화 등의 공급)\n" + | ||
151 | + "\n" + | ||
152 | + " ① “몰”은 이용자와 재화 등의 공급시기에 관하여 별도의 약정이 없는 이상, 이용자가 청약을 한 날부터 7일 이내에 재화 등을 배송할 수 있도록 주문제작, 포장 등 기타의 필요한 조치를 취합니다. 다만, “몰”이 이미 재화 등의 대금의 전부 또는 일부를 받은 경우에는 대금의 전부 또는 일부를 받은 날부터 3영업일 이내에 조치를 취합니다. 이때 “몰”은 이용자가 재화 등의 공급 절차 및 진행 사항을 확인할 수 있도록 적절한 조치를 합니다.\n" + | ||
153 | + "\n" + | ||
154 | + " ② “몰”은 이용자가 구매한 재화에 대해 배송수단, 수단별 배송비용 부담자, 수단별 배송기간 등을 명시합니다. 만약 “몰”이 약정 배송기간을 초과한 경우에는 그로 인한 이용자의 손해를 배상하여야 합니다. 다만 “몰”이 고의․과실이 없음을 입증한 경우에는 그러하지 아니합니다.\n" + | ||
155 | + "\n" + | ||
156 | + "제14조(환급) “몰”은 이용자가 구매신청한 재화 등이 품절 등의 사유로 인도 또는 제공을 할 수 없을 때에는 지체 없이 그 사유를 이용자에게 통지하고 사전에 재화 등의 대금을 받은 경우에는 대금을 받은 날부터 3영업일 이내에 환급하거나 환급에 필요한 조치를 취합니다.\n" + | ||
157 | + "\n" + | ||
158 | + "제15조(청약철회 등)\n" + | ||
159 | + "\n" + | ||
160 | + " ① “몰”과 재화등의 구매에 관한 계약을 체결한 이용자는 「전자상거래 등에서의 소비자보호에 관한 법률」 제13조 제2항에 따른 계약내용에 관한 서면을 받은 날(그 서면을 받은 때보다 재화 등의 공급이 늦게 이루어진 경우에는 재화 등을 공급받거나 재화 등의 공급이 시작된 날을 말합니다)부터 7일 이내에는 청약의 철회를 할 수 있습니다. 다만, 청약철회에 관하여 「전자상거래 등에서의 소비자보호에 관한 법률」에 달리 정함이 있는 경우에는 동 법 규정에 따릅니다. \n" + | ||
161 | + "\n" + | ||
162 | + " ② 이용자는 재화 등을 배송 받은 경우 다음 각 호의 1에 해당하는 경우에는 반품 및 교환을 할 수 없습니다.\n" + | ||
163 | + "\n" + | ||
164 | + " 1. 이용자에게 책임 있는 사유로 재화 등이 멸실 또는 훼손된 경우(다만, 재화 등의 내용을 확인하기 위하여 포장 등을 훼손한 경우에는 청약철회를 할 수 있습니다)\n" + | ||
165 | + " 2. 이용자의 사용 또는 일부 소비에 의하여 재화 등의 가치가 현저히 감소한 경우\n" + | ||
166 | + " 3. 시간의 경과에 의하여 재판매가 곤란할 정도로 재화등의 가치가 현저히 감소한 경우\n" + | ||
167 | + " 4. 같은 성능을 지닌 재화 등으로 복제가 가능한 경우 그 원본인 재화 등의 포장을 훼손한 경우\n" + | ||
168 | + "\n" + | ||
169 | + " ③ 제2항제2호 내지 제4호의 경우에 “몰”이 사전에 청약철회 등이 제한되는 사실을 소비자가 쉽게 알 수 있는 곳에 명기하거나 시용상품을 제공하는 등의 조치를 하지 않았다면 이용자의 청약철회 등이 제한되지 않습니다.\n" + | ||
170 | + "\n" + | ||
171 | + " ④ 이용자는 제1항 및 제2항의 규정에 불구하고 재화 등의 내용이 표시·광고 내용과 다르거나 계약내용과 다르게 이행된 때에는 당해 재화 등을 공급받은 날부터 3월 이내, 그 사실을 안 날 또는 알 수 있었던 날부터 30일 이내에 청약철회 등을 할 수 있습니다.\n" + | ||
172 | + "\n" + | ||
173 | + "제16조(청약철회 등의 효과)\n" + | ||
174 | + "\n" + | ||
175 | + " ① “몰”은 이용자로부터 재화 등을 반환받은 경우 3영업일 이내에 이미 지급받은 재화 등의 대금을 환급합니다. 이 경우 “몰”이 이용자에게 재화등의 환급을 지연한때에는 그 지연기간에 대하여 「전자상거래 등에서의 소비자보호에 관한 법률 시행령」제21조의2에서 정하는 지연이자율을 곱하여 산정한 지연이자를 지급합니다.\n" + | ||
176 | + "\n" + | ||
177 | + " ② “몰”은 위 대금을 환급함에 있어서 이용자가 신용카드 또는 전자화폐 등의 결제수단으로 재화 등의 대금을 지급한 때에는 지체 없이 당해 결제수단을 제공한 사업자로 하여금 재화 등의 대금의 청구를 정지 또는 취소하도록 요청합니다.\n" + | ||
178 | + "\n" + | ||
179 | + " ③ 청약철회 등의 경우 공급받은 재화 등의 반환에 필요한 비용은 이용자가 부담합니다. “몰”은 이용자에게 청약철회 등을 이유로 위약금 또는 손해배상을 청구하지 않습니다. 다만 재화 등의 내용이 표시·광고 내용과 다르거나 계약내용과 다르게 이행되어 청약철회 등을 하는 경우 재화 등의 반환에 필요한 비용은 “몰”이 부담합니다.\n" + | ||
180 | + "\n" + | ||
181 | + " ④ 이용자가 재화 등을 제공받을 때 발송비를 부담한 경우에 “몰”은 청약철회 시 그 비용을 누가 부담하는지를 이용자가 알기 쉽도록 명확하게 표시합니다.\n" + | ||
182 | + "\n" + | ||
183 | + "제17조(개인정보보호)\n" + | ||
184 | + "\n" + | ||
185 | + " ① “몰”은 이용자의 개인정보 수집시 서비스제공을 위하여 필요한 범위에서 최소한의 개인정보를 수집합니다. \n" + | ||
186 | + "\n" + | ||
187 | + " ② “몰”은 회원가입시 구매계약이행에 필요한 정보를 미리 수집하지 않습니다. 다만, 관련 법령상 의무이행을 위하여 구매계약 이전에 본인확인이 필요한 경우로서 최소한의 특정 개인정보를 수집하는 경우에는 그러하지 아니합니다.\n" + | ||
188 | + "\n" + | ||
189 | + " ③ “몰”은 이용자의 개인정보를 수집·이용하는 때에는 당해 이용자에게 그 목적을 고지하고 동의를 받습니다. \n" + | ||
190 | + "\n" + | ||
191 | + " ④ “몰”은 수집된 개인정보를 목적외의 용도로 이용할 수 없으며, 새로운 이용목적이 발생한 경우 또는 제3자에게 제공하는 경우에는 이용·제공단계에서 당해 이용자에게 그 목적을 고지하고 동의를 받습니다. 다만, 관련 법령에 달리 정함이 있는 경우에는 예외로 합니다.\n" + | ||
192 | + "\n" + | ||
193 | + " ⑤ “몰”이 제2항과 제3항에 의해 이용자의 동의를 받아야 하는 경우에는 개인정보관리 책임자의 신원(소속, 성명 및 전화번호, 기타 연락처), 정보의 수집목적 및 이용목적, 제3자에 대한 정보제공 관련사항(제공받은자, 제공목적 및 제공할 정보의 내용) 등 「정보통신망 이용촉진 및 정보보호 등에 관한 법률」 제22조제2항이 규정한 사항을 미리 명시하거나 고지해야 하며 이용자는 언제든지 이 동의를 철회할 수 있습니다.\n" + | ||
194 | + "\n" + | ||
195 | + " ⑥ 이용자는 언제든지 “몰”이 가지고 있는 자신의 개인정보에 대해 열람 및 오류정정을 요구할 수 있으며 “몰”은 이에 대해 지체 없이 필요한 조치를 취할 의무를 집니다. 이용자가 오류의 정정을 요구한 경우에는 “몰”은 그 오류를 정정할 때까지 당해 개인정보를 이용하지 않습니다.\n" + | ||
196 | + " \n" + | ||
197 | + " ⑦ “몰”은 개인정보 보호를 위하여 이용자의 개인정보를 취급하는 자를 최소한으로 제한하여야 하며 신용카드, 은행계좌 등을 포함한 이용자의 개인정보의 분실, 도난, 유출, 동의 없는 제3자 제공, 변조 등으로 인한 이용자의 손해에 대하여 모든 책임을 집니다.\n" + | ||
198 | + "\n" + | ||
199 | + " ⑧ “몰” 또는 그로부터 개인정보를 제공받은 제3자는 개인정보의 수집목적 또는 제공받은 목적을 달성한 때에는 당해 개인정보를 지체 없이 파기합니다.\n" + | ||
200 | + "\n" + | ||
201 | + " ⑨ “몰”은 개인정보의 수집·이용·제공에 관한 동의 란을 미리 선택한 것으로 설정해두지 않습니다. 또한 개인정보의 수집·이용·제공에 관한 이용자의 동의거절시 제한되는 서비스를 구체적으로 명시하고, 필수수집항목이 아닌 개인정보의 수집·이용·제공에 관한 이용자의 동의 거절을 이유로 회원가입 등 서비스 제공을 제한하거나 거절하지 않습니다.\n" + | ||
202 | + "\n" + | ||
203 | + "제18조(“몰“의 의무)\n" + | ||
204 | + "\n" + | ||
205 | + " ① “몰”은 법령과 이 약관이 금지하거나 공서양속에 반하는 행위를 하지 않으며 이 약관이 정하는 바에 따라 지속적이고, 안정적으로 재화․용역을 제공하는데 최선을 다하여야 합니다.\n" + | ||
206 | + "\n" + | ||
207 | + " ② “몰”은 이용자가 안전하게 인터넷 서비스를 이용할 수 있도록 이용자의 개인정보(신용정보 포함)보호를 위한 보안 시스템을 갖추어야 합니다.\n" + | ||
208 | + "\n" + | ||
209 | + " ③ “몰”이 상품이나 용역에 대하여 「표시․광고의 공정화에 관한 법률」 제3조 소정의 부당한 표시․광고행위를 함으로써 이용자가 손해를 입은 때에는 이를 배상할 책임을 집니다.\n" + | ||
210 | + "\n" + | ||
211 | + " ④ “몰”은 이용자가 원하지 않는 영리목적의 광고성 전자우편을 발송하지 않습니다.\n" + | ||
212 | + "\n" + | ||
213 | + "제19조(회원의 ID 및 비밀번호에 대한 의무)\n" + | ||
214 | + "\n" + | ||
215 | + " ① 제17조의 경우를 제외한 ID와 비밀번호에 관한 관리책임은 회원에게 있습니다.\n" + | ||
216 | + "\n" + | ||
217 | + " ② 회원은 자신의 ID 및 비밀번호를 제3자에게 이용하게 해서는 안됩니다.\n" + | ||
218 | + "\n" + | ||
219 | + " ③ 회원이 자신의 ID 및 비밀번호를 도난당하거나 제3자가 사용하고 있음을 인지한 경우에는 바로 “몰”에 통보하고 “몰”의 안내가 있는 경우에는 그에 따라야 합니다.\n" + | ||
220 | + "\n" + | ||
221 | + "제20조(이용자의 의무) 이용자는 다음 행위를 하여서는 안 됩니다.\n" + | ||
222 | + "\n" + | ||
223 | + " 1. 신청 또는 변경시 허위 내용의 등록\n" + | ||
224 | + " 2. 타인의 정보 도용\n" + | ||
225 | + " 3. “몰”에 게시된 정보의 변경\n" + | ||
226 | + " 4. “몰”이 정한 정보 이외의 정보(컴퓨터 프로그램 등) 등의 송신 또는 게시\n" + | ||
227 | + " 5. “몰” 기타 제3자의 저작권 등 지적재산권에 대한 침해\n" + | ||
228 | + " 6. “몰” 기타 제3자의 명예를 손상시키거나 업무를 방해하는 행위\n" + | ||
229 | + " 7. 외설 또는 폭력적인 메시지, 화상, 음성, 기타 공서양속에 반하는 정보를 몰에 공개 또는 게시하는 행위\n" + | ||
230 | + "\n" + | ||
231 | + "제21조(연결“몰”과 피연결“몰” 간의 관계)\n" + | ||
232 | + "\n" + | ||
233 | + " ① 상위 “몰”과 하위 “몰”이 하이퍼링크(예: 하이퍼링크의 대상에는 문자, 그림 및 동화상 등이 포함됨)방식 등으로 연결된 경우, 전자를 연결 “몰”(웹 사이트)이라고 하고 후자를 피연결 “몰”(웹사이트)이라고 합니다.\n" + | ||
234 | + "\n" + | ||
235 | + " ② 연결“몰”은 피연결“몰”이 독자적으로 제공하는 재화 등에 의하여 이용자와 행하는 거래에 대해서 보증 책임을 지지 않는다는 뜻을 연결“몰”의 초기화면 또는 연결되는 시점의 팝업화면으로 명시한 경우에는 그 거래에 대한 보증 책임을 지지 않습니다.\n" + | ||
236 | + "\n" + | ||
237 | + "제22조(저작권의 귀속 및 이용제한)\n" + | ||
238 | + "\n" + | ||
239 | + " ① “몰“이 작성한 저작물에 대한 저작권 기타 지적재산권은 ”몰“에 귀속합니다.\n" + | ||
240 | + "\n" + | ||
241 | + " ② 이용자는 “몰”을 이용함으로써 얻은 정보 중 “몰”에게 지적재산권이 귀속된 정보를 “몰”의 사전 승낙 없이 복제, 송신, 출판, 배포, 방송 기타 방법에 의하여 영리목적으로 이용하거나 제3자에게 이용하게 하여서는 안됩니다.\n" + | ||
242 | + "\n" + | ||
243 | + " ③ “몰”은 약정에 따라 이용자에게 귀속된 저작권을 사용하는 경우 당해 이용자에게 통보하여야 합니다.\n" + | ||
244 | + "\n" + | ||
245 | + "제23조(분쟁해결)\n" + | ||
246 | + "\n" + | ||
247 | + " ① “몰”은 이용자가 제기하는 정당한 의견이나 불만을 반영하고 그 피해를 보상처리하기 위하여 피해보상처리기구를 설치․운영합니다.\n" + | ||
248 | + "\n" + | ||
249 | + " ② “몰”은 이용자로부터 제출되는 불만사항 및 의견은 우선적으로 그 사항을 처리합니다. 다만, 신속한 처리가 곤란한 경우에는 이용자에게 그 사유와 처리일정을 즉시 통보해 드립니다.\n" + | ||
250 | + "\n" + | ||
251 | + " ③ “몰”과 이용자 간에 발생한 전자상거래 분쟁과 관련하여 이용자의 피해구제신청이 있는 경우에는 공정거래위원회 또는 시·도지사가 의뢰하는 분쟁조정기관의 조정에 따를 수 있습니다.\n" + | ||
252 | + "\n" + | ||
253 | + "제24조(재판권 및 준거법)\n" + | ||
254 | + "\n" + | ||
255 | + " ① “몰”과 이용자 간에 발생한 전자상거래 분쟁에 관한 소송은 제소 당시의 이용자의 주소에 의하고, 주소가 없는 경우에는 거소를 관할하는 지방법원의 전속관할로 합니다. 다만, 제소 당시 이용자의 주소 또는 거소가 분명하지 않거나 외국 거주자의 경우에는 민사소송법상의 관할법원에 제기합니다.\n" + | ||
256 | + "\n" + | ||
257 | + " ② “몰”과 이용자 간에 제기된 전자상거래 소송에는 한국법을 적용합니다.\n" + | ||
258 | + "\n" + | ||
259 | + "\n" + | ||
260 | + "\n" + | ||
261 | + "\n" + | ||
262 | + "\n" + | ||
263 | + "\n" + | ||
264 | + "\n" | ||
265 | + web.loadData(summary, "text/html", "UTF-8") | ||
266 | + | ||
267 | + } | ||
268 | +} |
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 | +} |

8.53 KB
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> |

208 Bytes
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> |

193 KB

79.9 KB

81.1 KB

70.2 KB

111 KB

93.5 KB

103 KB

95.9 KB

173 KB

81.9 KB

480 Bytes

179 Bytes

14.5 KB

13.5 KB

130 Bytes

386 Bytes

24.5 KB

8.33 KB

7.73 KB

235 Bytes

8.53 KB
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> |

208 Bytes
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> |

193 KB

79.9 KB

81.1 KB

70.2 KB

111 KB

93.5 KB

103 KB

95.9 KB

173 KB

81.9 KB

480 Bytes

179 Bytes

14.5 KB

13.5 KB

130 Bytes

386 Bytes

24.5 KB

8.33 KB

3.67 KB

235 Bytes

8.53 KB
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> |

208 Bytes
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> |

193 KB

79.9 KB

81.1 KB

70.2 KB

111 KB

93.5 KB

103 KB

95.9 KB

173 KB

81.9 KB

480 Bytes

179 Bytes

14.5 KB

13.5 KB

130 Bytes

386 Bytes

24.5 KB

8.33 KB

5.23 KB

235 Bytes

8.53 KB
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> |

208 Bytes
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> |

193 KB

79.9 KB

81.1 KB

70.2 KB

111 KB

93.5 KB

103 KB

95.9 KB

173 KB

81.9 KB

480 Bytes

179 Bytes

14.5 KB

13.5 KB

130 Bytes

386 Bytes

24.5 KB

8.33 KB

235 Bytes

8.53 KB
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> |

208 Bytes
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> |

193 KB

79.9 KB

81.1 KB

70.2 KB

111 KB

93.5 KB

103 KB

95.9 KB

173 KB

81.9 KB

480 Bytes

179 Bytes

14.5 KB

13.5 KB

130 Bytes

386 Bytes

24.5 KB

8.33 KB

235 Bytes

8.53 KB
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> |

208 Bytes
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> |

193 KB

79.9 KB

81.1 KB

70.2 KB

111 KB

93.5 KB

103 KB

95.9 KB

173 KB

81.9 KB

480 Bytes

179 Bytes

14.5 KB

13.5 KB

130 Bytes

386 Bytes

24.5 KB

8.33 KB

235 Bytes
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | ||
3 | + <item> | ||
4 | + <shape android:shape="rectangle"> | ||
5 | + <solid android:color="#d7d7d7" /> | ||
6 | + </shape> | ||
7 | + </item> | ||
8 | + <item android:bottom="1dp"> | ||
9 | + <shape android:shape="rectangle"> | ||
10 | + <solid android:color="#ffffff" /> | ||
11 | + </shape> | ||
12 | + </item> | ||
13 | +</layer-list> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |

1.33 KB
... | @@ -43,10 +43,10 @@ | ... | @@ -43,10 +43,10 @@ |
43 | <ImageView | 43 | <ImageView |
44 | android:id="@+id/infoAccountImage" | 44 | android:id="@+id/infoAccountImage" |
45 | android:layout_width="50dp" | 45 | android:layout_width="50dp" |
46 | - android:layout_height="50dp" | 46 | + android:layout_height="99dp" |
47 | android:layout_gravity="center" | 47 | android:layout_gravity="center" |
48 | android:layout_weight="1" | 48 | android:layout_weight="1" |
49 | - android:src="@drawable/_wello_2" /> | 49 | + android:src="@drawable/user_default" /> |
50 | 50 | ||
51 | <LinearLayout | 51 | <LinearLayout |
52 | android:layout_width="wrap_content" | 52 | android:layout_width="wrap_content" |
... | @@ -54,32 +54,71 @@ | ... | @@ -54,32 +54,71 @@ |
54 | android:layout_weight="1" | 54 | android:layout_weight="1" |
55 | android:orientation="vertical"> | 55 | android:orientation="vertical"> |
56 | 56 | ||
57 | - <TextView | 57 | + <LinearLayout |
58 | - android:id="@+id/InfoNickname" | 58 | + android:layout_width="match_parent" |
59 | - android:layout_width="wrap_content" | 59 | + android:layout_height="match_parent" |
60 | - android:layout_height="wrap_content" | ||
61 | - android:layout_gravity="center" | ||
62 | android:layout_weight="1" | 60 | android:layout_weight="1" |
63 | - android:gravity="center" | 61 | + android:orientation="horizontal"> |
64 | - android:text="GRACE" /> | 62 | + |
65 | - | 63 | + <LinearLayout |
66 | - <TextView | 64 | + android:layout_width="match_parent" |
67 | - android:id="@+id/InfoEmail" | 65 | + android:layout_height="match_parent" |
68 | - android:layout_width="wrap_content" | 66 | + android:layout_gravity="center" |
69 | - android:layout_height="wrap_content" | 67 | + android:layout_weight="3.5" |
70 | - android:layout_gravity="center" | 68 | + android:gravity="center" |
71 | - android:layout_weight="1" | 69 | + android:orientation="vertical"> |
72 | - android:gravity="center" | 70 | + |
73 | - android:text="grace@naver.com" /> | 71 | + <TextView |
74 | - | 72 | + android:id="@+id/textView4" |
75 | - <TextView | 73 | + android:layout_width="wrap_content" |
76 | - android:id="@+id/InfoProfilProgress" | 74 | + android:layout_height="wrap_content" |
77 | - android:layout_width="wrap_content" | 75 | + android:layout_gravity="center|right" |
78 | - android:layout_height="wrap_content" | 76 | + android:layout_weight="1" |
79 | - android:layout_gravity="center" | 77 | + android:gravity="center" |
80 | - android:layout_weight="1" | 78 | + android:text="이메일" |
81 | - android:gravity="center" | 79 | + android:textColor="#29ABE2" |
82 | - android:text="프로필정보입력15/20" /> | 80 | + android:textSize="13dp" /> |
81 | + | ||
82 | + <TextView | ||
83 | + android:id="@+id/textView5" | ||
84 | + android:layout_width="wrap_content" | ||
85 | + android:layout_height="wrap_content" | ||
86 | + android:layout_gravity="right" | ||
87 | + android:layout_weight="1" | ||
88 | + android:gravity="center" | ||
89 | + android:text="성별" | ||
90 | + android:textColor="#29ABE2" | ||
91 | + android:textSize="13dp" /> | ||
92 | + </LinearLayout> | ||
93 | + | ||
94 | + <LinearLayout | ||
95 | + android:layout_width="match_parent" | ||
96 | + android:layout_height="match_parent" | ||
97 | + android:layout_weight="1" | ||
98 | + android:orientation="vertical"> | ||
99 | + | ||
100 | + <TextView | ||
101 | + android:id="@+id/InfoEmail" | ||
102 | + android:layout_width="wrap_content" | ||
103 | + android:layout_height="wrap_content" | ||
104 | + android:layout_gravity="center" | ||
105 | + android:layout_weight="1" | ||
106 | + android:gravity="center" | ||
107 | + android:text="wello@gmail.com" | ||
108 | + android:textSize="16dp" /> | ||
109 | + | ||
110 | + <TextView | ||
111 | + android:id="@+id/InfoProfilProgress" | ||
112 | + android:layout_width="wrap_content" | ||
113 | + android:layout_height="wrap_content" | ||
114 | + android:layout_gravity="center" | ||
115 | + android:layout_weight="1" | ||
116 | + android:gravity="center" | ||
117 | + android:text="gender" | ||
118 | + android:textSize="16dp" /> | ||
119 | + </LinearLayout> | ||
120 | + | ||
121 | + </LinearLayout> | ||
83 | 122 | ||
84 | </LinearLayout> | 123 | </LinearLayout> |
85 | 124 | ||
... | @@ -102,109 +141,52 @@ | ... | @@ -102,109 +141,52 @@ |
102 | android:layout_width="match_parent" | 141 | android:layout_width="match_parent" |
103 | android:layout_height="wrap_content" | 142 | android:layout_height="wrap_content" |
104 | android:layout_weight="1" | 143 | android:layout_weight="1" |
144 | + android:background="#fff" | ||
105 | android:orientation="vertical"> | 145 | android:orientation="vertical"> |
106 | 146 | ||
107 | - <LinearLayout | 147 | + <Button |
108 | - android:layout_width="match_parent" | 148 | + android:id="@+id/InfoButtonSettings" |
109 | - android:layout_height="wrap_content" | 149 | + style="?android:attr/borderlessButtonStyle" |
110 | - android:layout_gravity="center" | ||
111 | - android:layout_weight="1" | ||
112 | - android:gravity="center" | ||
113 | - android:orientation="vertical"> | ||
114 | - | ||
115 | - <ProgressBar | ||
116 | - android:id="@+id/InfoProgress" | ||
117 | - style="?android:attr/progressBarStyleHorizontal" | ||
118 | - android:layout_width="match_parent" | ||
119 | - android:layout_height="wrap_content" | ||
120 | - android:layout_gravity="center" /> | ||
121 | - | ||
122 | - <TextView | ||
123 | - android:id="@+id/InfoExplain" | ||
124 | - android:layout_width="match_parent" | ||
125 | - android:layout_height="wrap_content" | ||
126 | - android:layout_gravity="center" | ||
127 | - android:gravity="center" | ||
128 | - android:text="많이입력해야정확해요" /> | ||
129 | - | ||
130 | - <TextView | ||
131 | - android:id="@+id/InfoStep" | ||
132 | - android:layout_width="match_parent" | ||
133 | - android:layout_height="wrap_content" | ||
134 | - android:layout_gravity="center" | ||
135 | - android:gravity="center" | ||
136 | - android:text="STEP 15/20" /> | ||
137 | - </LinearLayout> | ||
138 | - | ||
139 | - <LinearLayout | ||
140 | - android:layout_width="match_parent" | ||
141 | - android:layout_height="wrap_content" | ||
142 | - android:layout_weight="1" | ||
143 | - android:gravity="center" | ||
144 | - android:orientation="horizontal"> | ||
145 | - | ||
146 | - <Button | ||
147 | - android:id="@+id/InfoButtonApp" | ||
148 | - android:layout_width="match_parent" | ||
149 | - android:layout_height="wrap_content" | ||
150 | - android:text="APP 정보" /> | ||
151 | - </LinearLayout> | ||
152 | - | ||
153 | - <LinearLayout | ||
154 | - android:layout_width="match_parent" | ||
155 | - android:layout_height="wrap_content" | ||
156 | - android:layout_weight="1" | ||
157 | - android:gravity="center" | ||
158 | - android:orientation="horizontal"> | ||
159 | - | ||
160 | - <Button | ||
161 | - android:id="@+id/InfoButtonLaw" | ||
162 | - android:layout_width="match_parent" | ||
163 | - android:layout_height="wrap_content" | ||
164 | - android:text="개인정보처리방침" /> | ||
165 | - </LinearLayout> | ||
166 | - | ||
167 | - <LinearLayout | ||
168 | android:layout_width="match_parent" | 150 | android:layout_width="match_parent" |
169 | android:layout_height="wrap_content" | 151 | android:layout_height="wrap_content" |
170 | - android:layout_weight="1" | 152 | + android:layout_marginTop="31dp" |
171 | - android:gravity="center" | 153 | + android:background="#FFF" |
172 | - android:orientation="horizontal"> | 154 | + android:drawableLeft="@drawable/settings" |
173 | - | 155 | + android:drawablePadding="22dp" |
174 | - <Button | 156 | + android:elevation="0dp" |
175 | - android:id="@+id/InfoButtonSettings" | 157 | + android:gravity="left|center_vertical" |
176 | - android:layout_width="match_parent" | 158 | + android:paddingLeft="33dp" |
177 | - android:layout_height="wrap_content" | 159 | + android:text="설정" |
178 | - android:text="환경설정" /> | 160 | + android:textSize="20dp" /> |
179 | - </LinearLayout> | 161 | + |
180 | - | 162 | + <Button |
181 | - <LinearLayout | 163 | + android:id="@+id/InfoButtonNotice" |
182 | android:layout_width="match_parent" | 164 | android:layout_width="match_parent" |
183 | android:layout_height="wrap_content" | 165 | android:layout_height="wrap_content" |
184 | - android:layout_weight="1" | 166 | + android:layout_marginTop="22dp" |
185 | - android:gravity="center" | 167 | + android:background="#FFF" |
186 | - android:orientation="horizontal"> | 168 | + style="?android:attr/borderlessButtonStyle" |
187 | - | 169 | + android:drawableLeft="@drawable/_alert" |
188 | - <Button | 170 | + android:drawablePadding="22dp" |
189 | - android:id="@+id/InfoButtonFAQ" | 171 | + android:gravity="left|center_vertical" |
190 | - android:layout_width="match_parent" | 172 | + android:paddingLeft="33dp" |
191 | - android:layout_height="wrap_content" | 173 | + android:text="공지사항" |
192 | - android:text="자주 묻는 질문" /> | 174 | + android:textSize="20dp" /> |
193 | - </LinearLayout> | 175 | + |
194 | - | 176 | + <Button |
195 | - <LinearLayout | 177 | + android:id="@+id/InfoButtonFAQ" |
196 | android:layout_width="match_parent" | 178 | android:layout_width="match_parent" |
197 | android:layout_height="wrap_content" | 179 | android:layout_height="wrap_content" |
198 | - android:layout_weight="1" | 180 | + android:layout_marginTop="22dp" |
199 | - android:gravity="center" | 181 | + android:background="#FFF" |
200 | - android:orientation="horizontal"> | 182 | + android:elevation="0dp" |
201 | - | 183 | + style="?android:attr/borderlessButtonStyle" |
202 | - <Button | 184 | + android:drawableLeft="@drawable/help" |
203 | - android:id="@+id/InfoButtonNotice" | 185 | + android:drawablePadding="22dp" |
204 | - android:layout_width="match_parent" | 186 | + android:gravity="left|center_vertical" |
205 | - android:layout_height="wrap_content" | 187 | + android:paddingLeft="33dp" |
206 | - android:text="공지사항" /> | 188 | + android:text="자주 묻는 질문" |
207 | - </LinearLayout> | 189 | + android:textSize="20dp" /> |
208 | 190 | ||
209 | </LinearLayout> | 191 | </LinearLayout> |
210 | 192 | ... | ... |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:orientation="vertical" android:layout_width="match_parent" | ||
4 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
5 | + android:layout_height="match_parent"> | ||
6 | + | ||
7 | + <androidx.appcompat.widget.Toolbar | ||
8 | + android:id="@+id/toolbar" | ||
9 | + android:layout_width="fill_parent" | ||
10 | + android:layout_height="wrap_content" | ||
11 | + android:layout_gravity="center" | ||
12 | + android:layout_marginBottom="11dp" | ||
13 | + android:background="#FFF" | ||
14 | + android:elevation="5dp" | ||
15 | + android:gravity="center" | ||
16 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
17 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
18 | + | ||
19 | + <TextView | ||
20 | + android:layout_width="wrap_content" | ||
21 | + android:layout_height="44dp" | ||
22 | + android:layout_gravity="center" | ||
23 | + android:gravity="center" | ||
24 | + android:text="공지사항" | ||
25 | + android:textColor="#000" | ||
26 | + android:textSize="16dp" /> | ||
27 | + </androidx.appcompat.widget.Toolbar> | ||
28 | + | ||
29 | + <LinearLayout | ||
30 | + android:layout_width="match_parent" | ||
31 | + android:layout_height="match_parent" | ||
32 | + android:layout_weight="1" | ||
33 | + android:background="#fff" | ||
34 | + android:orientation="vertical"> | ||
35 | + | ||
36 | + <LinearLayout | ||
37 | + android:layout_width="match_parent" | ||
38 | + android:layout_height="wrap_content" | ||
39 | + android:layout_marginLeft="11dp" | ||
40 | + android:layout_marginRight="11dp" | ||
41 | + android:background="@drawable/bottom_border" | ||
42 | + | ||
43 | + android:orientation="horizontal"> | ||
44 | + | ||
45 | + <Button | ||
46 | + android:id="@+id/notice4" | ||
47 | + style="?android:attr/borderlessButtonStyle" | ||
48 | + android:layout_width="match_parent" | ||
49 | + android:layout_height="65dp" | ||
50 | + android:layout_weight="1" | ||
51 | + android:gravity="left|center_vertical" | ||
52 | + android:paddingLeft="33dp" | ||
53 | + android:text="공지4" | ||
54 | + android:textSize="17dp" /> | ||
55 | + | ||
56 | + <ImageView | ||
57 | + android:id="@+id/notice4_img" | ||
58 | + android:layout_width="match_parent" | ||
59 | + android:layout_height="wrap_content" | ||
60 | + android:layout_gravity="center|right" | ||
61 | + android:layout_weight="6" | ||
62 | + app:srcCompat="@drawable/down_arrow" /> | ||
63 | + </LinearLayout> | ||
64 | + | ||
65 | + <LinearLayout | ||
66 | + android:layout_width="match_parent" | ||
67 | + android:layout_height="wrap_content" | ||
68 | + android:layout_marginLeft="11dp" | ||
69 | + android:layout_marginRight="11dp" | ||
70 | + android:background="@drawable/bottom_border" | ||
71 | + | ||
72 | + android:orientation="horizontal"> | ||
73 | + | ||
74 | + <Button | ||
75 | + android:id="@+id/notice3" | ||
76 | + style="?android:attr/borderlessButtonStyle" | ||
77 | + android:layout_width="match_parent" | ||
78 | + android:layout_height="65dp" | ||
79 | + android:layout_weight="1" | ||
80 | + android:gravity="left|center_vertical" | ||
81 | + android:paddingLeft="33dp" | ||
82 | + android:text="공지3" | ||
83 | + android:textSize="17dp" /> | ||
84 | + | ||
85 | + <ImageView | ||
86 | + android:id="@+id/notice3_img" | ||
87 | + android:layout_width="match_parent" | ||
88 | + android:layout_height="wrap_content" | ||
89 | + android:layout_gravity="center|right" | ||
90 | + android:layout_weight="6" | ||
91 | + app:srcCompat="@drawable/down_arrow" /> | ||
92 | + </LinearLayout> | ||
93 | + | ||
94 | + <LinearLayout | ||
95 | + android:layout_width="match_parent" | ||
96 | + android:layout_height="wrap_content" | ||
97 | + android:layout_marginLeft="11dp" | ||
98 | + android:layout_marginRight="11dp" | ||
99 | + android:background="@drawable/bottom_border" | ||
100 | + android:orientation="horizontal" | ||
101 | + android:stateListAnimator="@null"> | ||
102 | + | ||
103 | + <Button | ||
104 | + android:id="@+id/notice2" | ||
105 | + style="?android:attr/borderlessButtonStyle" | ||
106 | + android:layout_width="match_parent" | ||
107 | + android:layout_height="65dp" | ||
108 | + android:layout_weight="1" | ||
109 | + android:gravity="left|center_vertical" | ||
110 | + android:paddingLeft="33dp" | ||
111 | + android:stateListAnimator="@null" | ||
112 | + android:text="공지2" | ||
113 | + android:textSize="17dp" /> | ||
114 | + | ||
115 | + <ImageView | ||
116 | + android:id="@+id/notice2_img" | ||
117 | + android:layout_width="match_parent" | ||
118 | + android:layout_height="wrap_content" | ||
119 | + android:layout_gravity="center|right" | ||
120 | + android:layout_weight="6" | ||
121 | + app:srcCompat="@drawable/down_arrow" /> | ||
122 | + | ||
123 | + </LinearLayout> | ||
124 | + | ||
125 | + <LinearLayout | ||
126 | + android:layout_width="match_parent" | ||
127 | + android:layout_height="wrap_content" | ||
128 | + android:layout_marginLeft="11dp" | ||
129 | + android:layout_marginRight="11dp" | ||
130 | + android:background="@drawable/bottom_border" | ||
131 | + | ||
132 | + android:orientation="horizontal"> | ||
133 | + | ||
134 | + <Button | ||
135 | + android:id="@+id/notice1" | ||
136 | + style="?android:attr/borderlessButtonStyle" | ||
137 | + android:layout_width="match_parent" | ||
138 | + android:layout_height="65dp" | ||
139 | + android:layout_weight="1" | ||
140 | + android:gravity="left|center_vertical" | ||
141 | + android:paddingLeft="33dp" | ||
142 | + android:text="공지1" | ||
143 | + android:textSize="17dp" /> | ||
144 | + | ||
145 | + <ImageView | ||
146 | + android:id="@+id/notice1_img" | ||
147 | + android:layout_width="match_parent" | ||
148 | + android:layout_height="wrap_content" | ||
149 | + android:layout_gravity="center|right" | ||
150 | + android:layout_weight="6" | ||
151 | + app:srcCompat="@drawable/down_arrow" /> | ||
152 | + </LinearLayout> | ||
153 | + | ||
154 | + </LinearLayout> | ||
155 | + | ||
156 | + <com.google.android.material.bottomnavigation.BottomNavigationView | ||
157 | + android:id="@+id/bottomNavigation" | ||
158 | + android:layout_width="match_parent" | ||
159 | + android:layout_height="wrap_content" | ||
160 | + android:layout_gravity="bottom" | ||
161 | + android:background="#FFF" | ||
162 | + app:itemIconTint="#29ABE2" | ||
163 | + app:itemTextColor="#29ABE2" | ||
164 | + app:labelVisibilityMode="labeled" | ||
165 | + app:menu="@menu/bottom_nav_menu" /> | ||
166 | + | ||
167 | +</LinearLayout> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:orientation="vertical" android:layout_width="match_parent" | ||
4 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
5 | + android:layout_height="match_parent"> | ||
6 | + | ||
7 | + <androidx.appcompat.widget.Toolbar | ||
8 | + android:id="@+id/toolbar" | ||
9 | + android:layout_width="fill_parent" | ||
10 | + android:layout_height="wrap_content" | ||
11 | + android:layout_gravity="center" | ||
12 | + android:layout_marginBottom="11dp" | ||
13 | + android:background="#FFF" | ||
14 | + android:elevation="5dp" | ||
15 | + android:gravity="center" | ||
16 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
17 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
18 | + | ||
19 | + <TextView | ||
20 | + android:layout_width="wrap_content" | ||
21 | + android:layout_height="44dp" | ||
22 | + android:layout_gravity="center" | ||
23 | + android:gravity="center" | ||
24 | + android:text="개인정보 처리방침" | ||
25 | + android:textColor="#000" | ||
26 | + android:textSize="16dp" /> | ||
27 | + </androidx.appcompat.widget.Toolbar> | ||
28 | + | ||
29 | + <LinearLayout | ||
30 | + android:layout_width="match_parent" | ||
31 | + android:layout_height="match_parent" | ||
32 | + android:layout_weight="1" | ||
33 | + android:background="#fff" | ||
34 | + android:orientation="vertical"> | ||
35 | + | ||
36 | + <WebView | ||
37 | + android:id="@+id/privacy" | ||
38 | + android:layout_width="match_parent" | ||
39 | + android:layout_height="match_parent" /> | ||
40 | + </LinearLayout> | ||
41 | + | ||
42 | + <com.google.android.material.bottomnavigation.BottomNavigationView | ||
43 | + android:id="@+id/bottomNavigation" | ||
44 | + android:layout_width="match_parent" | ||
45 | + android:layout_height="wrap_content" | ||
46 | + android:layout_gravity="bottom" | ||
47 | + android:background="#FFF" | ||
48 | + app:itemIconTint="#29ABE2" | ||
49 | + app:itemTextColor="#29ABE2" | ||
50 | + app:labelVisibilityMode="labeled" | ||
51 | + app:menu="@menu/bottom_nav_menu" /> | ||
52 | + | ||
53 | +</LinearLayout> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:orientation="vertical" android:layout_width="match_parent" | ||
4 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
5 | + xmlns:tools="http://schemas.android.com/tools" | ||
6 | + android:layout_height="match_parent"> | ||
7 | + | ||
8 | + <androidx.appcompat.widget.Toolbar | ||
9 | + android:id="@+id/toolbar" | ||
10 | + android:layout_width="fill_parent" | ||
11 | + android:layout_height="wrap_content" | ||
12 | + android:layout_gravity="center" | ||
13 | + android:layout_marginBottom="11dp" | ||
14 | + android:background="#FFF" | ||
15 | + android:elevation="5dp" | ||
16 | + android:gravity="center" | ||
17 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
18 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
19 | + | ||
20 | + <TextView | ||
21 | + android:layout_width="77dp" | ||
22 | + android:layout_height="44dp" | ||
23 | + android:layout_gravity="center" | ||
24 | + android:gravity="center" | ||
25 | + android:text="설정" | ||
26 | + android:textColor="#000" | ||
27 | + android:textSize="16dp" /> | ||
28 | + </androidx.appcompat.widget.Toolbar> | ||
29 | + | ||
30 | + <LinearLayout | ||
31 | + android:layout_width="match_parent" | ||
32 | + android:layout_height="match_parent" | ||
33 | + android:layout_weight="1" | ||
34 | + android:background="#fff" | ||
35 | + android:orientation="vertical"> | ||
36 | + | ||
37 | + <LinearLayout | ||
38 | + android:layout_width="match_parent" | ||
39 | + android:layout_height="wrap_content" | ||
40 | + android:orientation="vertical"> | ||
41 | + | ||
42 | + <Switch | ||
43 | + android:id="@+id/switch3" | ||
44 | + android:layout_width="match_parent" | ||
45 | + android:layout_height="65dp" | ||
46 | + android:layout_marginLeft="11dp" | ||
47 | + android:layout_marginRight="11dp" | ||
48 | + android:background="@drawable/bottom_border" | ||
49 | + android:gravity="left|center_vertical" | ||
50 | + android:paddingLeft="33dp" | ||
51 | + android:textSize="17dp" | ||
52 | + android:checked="true" | ||
53 | + android:text="이용정보 알림 수신" /> | ||
54 | + | ||
55 | + <Switch | ||
56 | + android:id="@+id/switch4" | ||
57 | + android:layout_width="match_parent" | ||
58 | + android:layout_height="65dp" | ||
59 | + android:layout_marginLeft="11dp" | ||
60 | + android:layout_marginRight="11dp" | ||
61 | + android:background="@drawable/bottom_border" | ||
62 | + android:gravity="left|center_vertical" | ||
63 | + android:paddingLeft="33dp" | ||
64 | + android:checked="true" | ||
65 | + android:text="찜한목록 소식받기" | ||
66 | + android:textSize="17dp" /> | ||
67 | + | ||
68 | + <TextView | ||
69 | + android:id="@+id/textView7" | ||
70 | + android:layout_width="match_parent" | ||
71 | + android:layout_height="wrap_content" | ||
72 | + android:layout_marginLeft="33dp" | ||
73 | + android:layout_marginTop="17dp" | ||
74 | + android:lineSpacingExtra="6dp" | ||
75 | + android:text="* 푸시알림은 3일에 한 번씩, \n\t\t오전 9시부터 저녁 6시 사이로 보내드립니다." | ||
76 | + android:textSize="13dp" /> | ||
77 | + | ||
78 | + </LinearLayout> | ||
79 | + | ||
80 | + </LinearLayout> | ||
81 | + | ||
82 | + <com.google.android.material.bottomnavigation.BottomNavigationView | ||
83 | + android:id="@+id/bottomNavigation" | ||
84 | + android:layout_width="match_parent" | ||
85 | + android:layout_height="wrap_content" | ||
86 | + android:layout_gravity="bottom" | ||
87 | + android:background="#FFF" | ||
88 | + app:itemIconTint="#29ABE2" | ||
89 | + app:itemTextColor="#29ABE2" | ||
90 | + app:labelVisibilityMode="labeled" | ||
91 | + app:menu="@menu/bottom_nav_menu" /> | ||
92 | + | ||
93 | +</LinearLayout> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:orientation="vertical" android:layout_width="match_parent" | ||
4 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
5 | + android:layout_height="match_parent"> | ||
6 | + | ||
7 | + <androidx.appcompat.widget.Toolbar | ||
8 | + android:id="@+id/toolbar" | ||
9 | + android:layout_width="fill_parent" | ||
10 | + android:layout_height="wrap_content" | ||
11 | + android:layout_gravity="center" | ||
12 | + android:layout_marginBottom="11dp" | ||
13 | + android:background="#FFF" | ||
14 | + android:elevation="5dp" | ||
15 | + android:gravity="center" | ||
16 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
17 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
18 | + | ||
19 | + <TextView | ||
20 | + android:layout_width="wrap_content" | ||
21 | + android:layout_height="44dp" | ||
22 | + android:layout_gravity="center" | ||
23 | + android:gravity="center" | ||
24 | + android:text="서비스 이용 약관" | ||
25 | + android:textColor="#000" | ||
26 | + android:textSize="16dp" /> | ||
27 | + </androidx.appcompat.widget.Toolbar> | ||
28 | + | ||
29 | + <LinearLayout | ||
30 | + android:layout_width="match_parent" | ||
31 | + android:layout_height="match_parent" | ||
32 | + android:layout_weight="1" | ||
33 | + android:background="#fff" | ||
34 | + android:orientation="vertical"> | ||
35 | + | ||
36 | + <Button | ||
37 | + android:id="@+id/discription" | ||
38 | + style="?android:attr/borderlessButtonStyle" | ||
39 | + android:layout_width="match_parent" | ||
40 | + android:layout_height="44dp" | ||
41 | + android:gravity="left|center_vertical" | ||
42 | + android:paddingLeft="33dp" | ||
43 | + android:text="TOP 11" | ||
44 | + android:textSize="17dp" /> | ||
45 | + | ||
46 | + <androidx.recyclerview.widget.RecyclerView | ||
47 | + android:id="@+id/qna_rv" | ||
48 | + android:layout_width="match_parent" | ||
49 | + android:layout_height="match_parent" /> | ||
50 | + | ||
51 | + <LinearLayout | ||
52 | + android:layout_width="match_parent" | ||
53 | + android:layout_height="wrap_content" | ||
54 | + android:layout_marginLeft="11dp" | ||
55 | + android:layout_marginRight="11dp" | ||
56 | + android:background="@drawable/bottom_border" | ||
57 | + | ||
58 | + android:orientation="horizontal"> | ||
59 | + | ||
60 | + <Button | ||
61 | + android:id="@+id/terms_use" | ||
62 | + style="?android:attr/borderlessButtonStyle" | ||
63 | + android:layout_width="match_parent" | ||
64 | + android:layout_height="65dp" | ||
65 | + android:layout_weight="1" | ||
66 | + android:gravity="left|center_vertical" | ||
67 | + android:paddingLeft="33dp" | ||
68 | + android:text="이용 약관" | ||
69 | + android:textSize="17dp" /> | ||
70 | + | ||
71 | + <ImageView | ||
72 | + android:id="@+id/ef" | ||
73 | + android:layout_width="match_parent" | ||
74 | + android:layout_height="wrap_content" | ||
75 | + android:layout_gravity="center|right" | ||
76 | + android:layout_weight="6" | ||
77 | + app:srcCompat="@drawable/down_arrow" /> | ||
78 | + | ||
79 | + </LinearLayout> | ||
80 | + </LinearLayout> | ||
81 | + | ||
82 | + <com.google.android.material.bottomnavigation.BottomNavigationView | ||
83 | + android:id="@+id/bottomNavigation" | ||
84 | + android:layout_width="match_parent" | ||
85 | + android:layout_height="wrap_content" | ||
86 | + android:layout_gravity="bottom" | ||
87 | + android:background="#FFF" | ||
88 | + app:itemIconTint="#29ABE2" | ||
89 | + app:itemTextColor="#29ABE2" | ||
90 | + app:labelVisibilityMode="labeled" | ||
91 | + app:menu="@menu/bottom_nav_menu" > | ||
92 | + | ||
93 | + </com.google.android.material.bottomnavigation.BottomNavigationView> | ||
94 | + | ||
95 | +</LinearLayout> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:orientation="vertical" android:layout_width="match_parent" | ||
4 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
5 | + xmlns:tools="http://schemas.android.com/tools" | ||
6 | + android:layout_height="match_parent"> | ||
7 | + | ||
8 | + <androidx.appcompat.widget.Toolbar | ||
9 | + android:id="@+id/toolbar" | ||
10 | + android:layout_width="fill_parent" | ||
11 | + android:layout_height="wrap_content" | ||
12 | + android:layout_gravity="center" | ||
13 | + android:layout_marginBottom="11dp" | ||
14 | + android:background="#FFF" | ||
15 | + android:elevation="5dp" | ||
16 | + android:gravity="center" | ||
17 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
18 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
19 | + | ||
20 | + <TextView | ||
21 | + android:layout_width="77dp" | ||
22 | + android:layout_height="44dp" | ||
23 | + android:layout_gravity="center" | ||
24 | + android:gravity="center" | ||
25 | + android:text="설정" | ||
26 | + android:textColor="#000" | ||
27 | + android:textSize="16dp" /> | ||
28 | + </androidx.appcompat.widget.Toolbar> | ||
29 | + | ||
30 | + <LinearLayout | ||
31 | + android:layout_width="match_parent" | ||
32 | + android:layout_height="match_parent" | ||
33 | + android:layout_weight="1" | ||
34 | + android:background="#fff" | ||
35 | + android:orientation="vertical"> | ||
36 | + | ||
37 | + <LinearLayout | ||
38 | + android:layout_width="match_parent" | ||
39 | + android:layout_height="wrap_content" | ||
40 | + android:orientation="vertical"></LinearLayout> | ||
41 | + | ||
42 | + <Button | ||
43 | + android:id="@+id/button" | ||
44 | + style="?android:attr/borderlessButtonStyle" | ||
45 | + android:layout_width="match_parent" | ||
46 | + android:layout_height="65dp" | ||
47 | + android:layout_marginLeft="11dp" | ||
48 | + android:layout_marginRight="11dp" | ||
49 | + android:background="@drawable/bottom_border" | ||
50 | + android:gravity="left|center_vertical" | ||
51 | + android:paddingLeft="33dp" | ||
52 | + android:text="계정 설정 (미구현)" | ||
53 | + android:textSize="17dp" /> | ||
54 | + | ||
55 | + <Button | ||
56 | + android:id="@+id/info_push" | ||
57 | + android:textSize="17dp" | ||
58 | + style="?android:attr/borderlessButtonStyle" | ||
59 | + android:layout_marginLeft="11dp" | ||
60 | + android:layout_marginRight="11dp" | ||
61 | + android:layout_width="match_parent" | ||
62 | + android:layout_height="65dp" | ||
63 | + android:gravity="left|center_vertical" | ||
64 | + android:paddingLeft="33dp" | ||
65 | + android:background="@drawable/bottom_border" | ||
66 | + android:text="푸시 알림" /> | ||
67 | + | ||
68 | + <Button | ||
69 | + android:id="@+id/button3" | ||
70 | + android:textSize="17dp" | ||
71 | + style="?android:attr/borderlessButtonStyle" | ||
72 | + android:layout_width="match_parent" | ||
73 | + android:layout_marginLeft="11dp" | ||
74 | + android:layout_marginRight="11dp" | ||
75 | + android:layout_height="65dp" | ||
76 | + android:gravity="left|center_vertical" | ||
77 | + android:background="@drawable/bottom_border" | ||
78 | + android:paddingLeft="33dp" | ||
79 | + android:text="접근권한 설정 (미구현)" /> | ||
80 | + | ||
81 | + <Button | ||
82 | + android:id="@+id/terms_of_use" | ||
83 | + android:textSize="17dp" | ||
84 | + android:layout_marginLeft="11dp" | ||
85 | + android:layout_marginRight="11dp" | ||
86 | + style="?android:attr/borderlessButtonStyle" | ||
87 | + android:layout_width="match_parent" | ||
88 | + android:layout_height="65dp" | ||
89 | + android:gravity="left|center_vertical" | ||
90 | + android:paddingLeft="33dp" | ||
91 | + android:background="@drawable/bottom_border" | ||
92 | + android:text="서비스 이용 약관" /> | ||
93 | + | ||
94 | + <LinearLayout | ||
95 | + android:layout_width="match_parent" | ||
96 | + android:layout_height="wrap_content" | ||
97 | + android:layout_marginLeft="11dp" | ||
98 | + android:layout_marginRight="11dp" | ||
99 | + android:background="@drawable/bottom_border" | ||
100 | + | ||
101 | + android:orientation="horizontal"> | ||
102 | + | ||
103 | + <Button | ||
104 | + android:id="@+id/terms_use" | ||
105 | + style="?android:attr/borderlessButtonStyle" | ||
106 | + android:layout_width="match_parent" | ||
107 | + android:layout_height="65dp" | ||
108 | + android:layout_weight="1" | ||
109 | + android:gravity="left|center_vertical" | ||
110 | + android:paddingLeft="33dp" | ||
111 | + android:text="버전 정보" | ||
112 | + android:textSize="17dp" /> | ||
113 | + | ||
114 | + <TextView | ||
115 | + android:id="@+id/textView6" | ||
116 | + android:layout_width="match_parent" | ||
117 | + android:layout_height="wrap_content" | ||
118 | + android:layout_weight="1" | ||
119 | + android:gravity="right|center_vertical" | ||
120 | + android:paddingRight="33dp" | ||
121 | + android:text="v1.0.0" /> | ||
122 | + </LinearLayout> | ||
123 | + | ||
124 | + </LinearLayout> | ||
125 | + | ||
126 | + <com.google.android.material.bottomnavigation.BottomNavigationView | ||
127 | + android:id="@+id/bottomNavigation" | ||
128 | + android:layout_width="match_parent" | ||
129 | + android:layout_height="wrap_content" | ||
130 | + android:layout_gravity="bottom" | ||
131 | + android:background="#FFF" | ||
132 | + app:itemIconTint="#29ABE2" | ||
133 | + app:itemTextColor="#29ABE2" | ||
134 | + app:labelVisibilityMode="labeled" | ||
135 | + app:menu="@menu/bottom_nav_menu" /> | ||
136 | + | ||
137 | +</LinearLayout> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:orientation="vertical" android:layout_width="match_parent" | ||
4 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
5 | + android:layout_height="match_parent"> | ||
6 | + | ||
7 | + <androidx.appcompat.widget.Toolbar | ||
8 | + android:id="@+id/toolbar" | ||
9 | + android:layout_width="fill_parent" | ||
10 | + android:layout_height="wrap_content" | ||
11 | + android:layout_gravity="center" | ||
12 | + android:layout_marginBottom="11dp" | ||
13 | + android:background="#FFF" | ||
14 | + android:elevation="5dp" | ||
15 | + android:gravity="center" | ||
16 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
17 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
18 | + | ||
19 | + <TextView | ||
20 | + android:layout_width="wrap_content" | ||
21 | + android:layout_height="44dp" | ||
22 | + android:layout_gravity="center" | ||
23 | + android:gravity="center" | ||
24 | + android:text="이용약관" | ||
25 | + android:textColor="#000" | ||
26 | + android:textSize="16dp" /> | ||
27 | + </androidx.appcompat.widget.Toolbar> | ||
28 | + | ||
29 | + <LinearLayout | ||
30 | + android:layout_width="match_parent" | ||
31 | + android:layout_height="match_parent" | ||
32 | + android:layout_weight="1" | ||
33 | + android:background="#fff" | ||
34 | + android:orientation="vertical"> | ||
35 | + | ||
36 | + <WebView | ||
37 | + android:id="@+id/use_terms" | ||
38 | + android:layout_width="match_parent" | ||
39 | + android:layout_height="match_parent" /> | ||
40 | + </LinearLayout> | ||
41 | + | ||
42 | + <com.google.android.material.bottomnavigation.BottomNavigationView | ||
43 | + android:id="@+id/bottomNavigation" | ||
44 | + android:layout_width="match_parent" | ||
45 | + android:layout_height="wrap_content" | ||
46 | + android:layout_gravity="bottom" | ||
47 | + android:background="#FFF" | ||
48 | + app:itemIconTint="#29ABE2" | ||
49 | + app:itemTextColor="#29ABE2" | ||
50 | + app:labelVisibilityMode="labeled" | ||
51 | + app:menu="@menu/bottom_nav_menu" /> | ||
52 | + | ||
53 | +</LinearLayout> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + android:orientation="vertical" android:layout_width="match_parent" | ||
4 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
5 | + android:layout_height="match_parent"> | ||
6 | + | ||
7 | + <androidx.appcompat.widget.Toolbar | ||
8 | + android:id="@+id/toolbar" | ||
9 | + android:layout_width="fill_parent" | ||
10 | + android:layout_height="wrap_content" | ||
11 | + android:layout_gravity="center" | ||
12 | + android:layout_marginBottom="11dp" | ||
13 | + android:background="#FFF" | ||
14 | + android:elevation="5dp" | ||
15 | + android:gravity="center" | ||
16 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
17 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
18 | + | ||
19 | + <TextView | ||
20 | + android:layout_width="wrap_content" | ||
21 | + android:layout_height="44dp" | ||
22 | + android:layout_gravity="center" | ||
23 | + android:gravity="center" | ||
24 | + android:text="서비스 이용 약관" | ||
25 | + android:textColor="#000" | ||
26 | + android:textSize="16dp" /> | ||
27 | + </androidx.appcompat.widget.Toolbar> | ||
28 | + | ||
29 | + <LinearLayout | ||
30 | + android:layout_width="match_parent" | ||
31 | + android:layout_height="match_parent" | ||
32 | + android:layout_weight="1" | ||
33 | + android:background="#fff" | ||
34 | + android:orientation="vertical"> | ||
35 | + | ||
36 | + <LinearLayout | ||
37 | + android:layout_width="match_parent" | ||
38 | + android:layout_height="wrap_content" | ||
39 | + android:orientation="vertical"></LinearLayout> | ||
40 | + | ||
41 | + <LinearLayout | ||
42 | + android:layout_width="match_parent" | ||
43 | + android:layout_height="wrap_content" | ||
44 | + android:layout_marginLeft="11dp" | ||
45 | + android:layout_marginRight="11dp" | ||
46 | + android:background="@drawable/bottom_border" | ||
47 | + | ||
48 | + android:orientation="horizontal"> | ||
49 | + | ||
50 | + <Button | ||
51 | + android:id="@+id/terms_use" | ||
52 | + style="?android:attr/borderlessButtonStyle" | ||
53 | + android:layout_width="match_parent" | ||
54 | + android:layout_height="65dp" | ||
55 | + android:layout_weight="1" | ||
56 | + android:gravity="left|center_vertical" | ||
57 | + android:paddingLeft="33dp" | ||
58 | + android:text="이용 약관" | ||
59 | + android:textSize="17dp" /> | ||
60 | + | ||
61 | + <ImageView | ||
62 | + android:id="@+id/ef" | ||
63 | + android:layout_width="match_parent" | ||
64 | + android:layout_height="wrap_content" | ||
65 | + android:layout_gravity="center|right" | ||
66 | + android:layout_weight="6" | ||
67 | + app:srcCompat="@drawable/foward_arrow" /> | ||
68 | + </LinearLayout> | ||
69 | + <LinearLayout | ||
70 | + android:layout_width="match_parent" | ||
71 | + android:layout_height="wrap_content" | ||
72 | + android:layout_marginLeft="11dp" | ||
73 | + android:layout_marginRight="11dp" | ||
74 | + android:background="@drawable/bottom_border" | ||
75 | + android:stateListAnimator="@null" | ||
76 | + android:orientation="horizontal"> | ||
77 | + | ||
78 | + <Button | ||
79 | + android:id="@+id/terms_use2" | ||
80 | + style="?android:attr/borderlessButtonStyle" | ||
81 | + android:layout_width="match_parent" | ||
82 | + android:layout_height="65dp" | ||
83 | + android:layout_weight="1" | ||
84 | + android:gravity="left|center_vertical" | ||
85 | + android:paddingLeft="33dp" | ||
86 | + android:stateListAnimator="@null" | ||
87 | + android:text="개인정보 처리방침" | ||
88 | + android:textSize="17dp" /> | ||
89 | + | ||
90 | + <ImageView | ||
91 | + android:id="@+id/ef2" | ||
92 | + android:layout_width="match_parent" | ||
93 | + android:layout_height="wrap_content" | ||
94 | + android:layout_gravity="center|right" | ||
95 | + android:layout_weight="6" | ||
96 | + app:srcCompat="@drawable/foward_arrow" /> | ||
97 | + | ||
98 | + </LinearLayout> | ||
99 | + | ||
100 | + </LinearLayout> | ||
101 | + | ||
102 | + <com.google.android.material.bottomnavigation.BottomNavigationView | ||
103 | + android:id="@+id/bottomNavigation" | ||
104 | + android:layout_width="match_parent" | ||
105 | + android:layout_height="wrap_content" | ||
106 | + android:layout_gravity="bottom" | ||
107 | + android:background="#FFF" | ||
108 | + app:itemIconTint="#29ABE2" | ||
109 | + app:itemTextColor="#29ABE2" | ||
110 | + app:labelVisibilityMode="labeled" | ||
111 | + app:menu="@menu/bottom_nav_menu" /> | ||
112 | + | ||
113 | +</LinearLayout> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
4 | + xmlns:tools="http://schemas.android.com/tools" | ||
5 | + android:layout_width="match_parent" | ||
6 | + android:layout_height="wrap_content" | ||
7 | + android:layout_margin="10dp" | ||
8 | + android:background="@drawable/bottom_border" | ||
9 | + android:orientation="horizontal" | ||
10 | + android:padding="7dp"> | ||
11 | + | ||
12 | + | ||
13 | + <LinearLayout | ||
14 | + android:layout_width="wrap_content" | ||
15 | + android:layout_height="match_parent" | ||
16 | + android:layout_weight="1" | ||
17 | + android:orientation="vertical"> | ||
18 | + | ||
19 | + <LinearLayout | ||
20 | + android:layout_width="match_parent" | ||
21 | + android:layout_height="wrap_content" | ||
22 | + android:orientation="horizontal"> | ||
23 | + | ||
24 | + <TextView | ||
25 | + android:id="@+id/questionText" | ||
26 | + android:layout_width="wrap_content" | ||
27 | + android:layout_height="65dp" | ||
28 | + android:layout_gravity="center|right" | ||
29 | + android:layout_weight="1" | ||
30 | + android:gravity="center|left" | ||
31 | + android:text="TextView" | ||
32 | + android:textSize="16dp" /> | ||
33 | + | ||
34 | + <ImageView | ||
35 | + android:id="@+id/bottomArrow" | ||
36 | + android:layout_width="wrap_content" | ||
37 | + android:layout_height="wrap_content" | ||
38 | + android:layout_gravity="center|right" | ||
39 | + android:layout_weight="0.1" | ||
40 | + android:foregroundGravity="left" | ||
41 | + app:srcCompat="@drawable/down_arrow" /> | ||
42 | + | ||
43 | + </LinearLayout> | ||
44 | + | ||
45 | + <TextView | ||
46 | + android:id="@+id/answerText" | ||
47 | + android:layout_width="match_parent" | ||
48 | + android:layout_height="wrap_content" | ||
49 | + android:background="#F1F9FF" | ||
50 | + android:paddingLeft="11dp" | ||
51 | + android:text="TextView" | ||
52 | + android:lineSpacingExtra="6dp" | ||
53 | + android:textSize="13dp" /> | ||
54 | + | ||
55 | + </LinearLayout> | ||
56 | + | ||
57 | +</LinearLayout> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
... | @@ -46,7 +46,9 @@ | ... | @@ -46,7 +46,9 @@ |
46 | android:layout_marginTop="30dp" | 46 | android:layout_marginTop="30dp" |
47 | android:layout_marginRight="9dp" | 47 | android:layout_marginRight="9dp" |
48 | android:layout_marginBottom="9dp" | 48 | android:layout_marginBottom="9dp" |
49 | + android:queryBackground="@android:color/transparent" | ||
49 | android:background="@drawable/searchview_edge" | 50 | android:background="@drawable/searchview_edge" |
51 | + | ||
50 | android:focusable="false" | 52 | android:focusable="false" |
51 | android:layoutDirection="rtl" | 53 | android:layoutDirection="rtl" |
52 | android:paddingStart="7dp" | 54 | android:paddingStart="7dp" | ... | ... |

205 Bytes

698 Bytes

301 Bytes

567 Bytes

223 Bytes

300 Bytes

526 Bytes

679 Bytes

154 Bytes

379 Bytes

476 Bytes

476 Bytes

379 Bytes

607 Bytes

402 Bytes

288 Bytes

512 Bytes

203 Bytes

210 Bytes

251 Bytes

323 Bytes

585 Bytes

574 Bytes

586 Bytes

589 Bytes

481 Bytes

267 Bytes

752 Bytes

455 Bytes

189 Bytes

606 Bytes

394 Bytes

619 Bytes

268 Bytes

405 Bytes

298 Bytes

558 Bytes

426 Bytes

567 Bytes

390 Bytes

433 Bytes

501 Bytes

671 Bytes

639 Bytes

193 Bytes

282 Bytes

428 Bytes

438 Bytes

627 Bytes

662 Bytes

608 Bytes

329 Bytes

335 Bytes

296 Bytes

608 Bytes

709 Bytes

579 Bytes

543 Bytes

333 Bytes

357 Bytes

126 Bytes

136 Bytes

298 Bytes

410 Bytes

175 Bytes

195 Bytes

349 Bytes

205 Bytes

264 Bytes

351 Bytes

373 Bytes

134 Bytes

228 Bytes

314 Bytes

282 Bytes

204 Bytes

204 Bytes

331 Bytes

272 Bytes

233 Bytes

322 Bytes

174 Bytes

154 Bytes

176 Bytes

202 Bytes

342 Bytes

261 Bytes

413 Bytes

353 Bytes

332 Bytes

307 Bytes

233 Bytes

387 Bytes

262 Bytes

168 Bytes

337 Bytes

249 Bytes

353 Bytes

199 Bytes

262 Bytes

262 Bytes

342 Bytes

288 Bytes

341 Bytes

237 Bytes

265 Bytes

320 Bytes

367 Bytes

405 Bytes

194 Bytes

309 Bytes

179 Bytes

304 Bytes

280 Bytes

359 Bytes

395 Bytes

338 Bytes

172 Bytes

208 Bytes

181 Bytes

329 Bytes

388 Bytes

367 Bytes

336 Bytes

236 Bytes

256 Bytes

97 Bytes

124 Bytes

358 Bytes

516 Bytes

282 Bytes

203 Bytes

403 Bytes

185 Bytes

201 Bytes

381 Bytes

466 Bytes

132 Bytes

243 Bytes

361 Bytes

291 Bytes

224 Bytes

248 Bytes

397 Bytes

300 Bytes

296 Bytes

392 Bytes

131 Bytes

165 Bytes

274 Bytes

231 Bytes

392 Bytes

292 Bytes

538 Bytes

431 Bytes

368 Bytes

334 Bytes

165 Bytes

452 Bytes

345 Bytes

126 Bytes

441 Bytes

298 Bytes

430 Bytes

205 Bytes

348 Bytes

222 Bytes

404 Bytes

324 Bytes

428 Bytes

247 Bytes

342 Bytes

405 Bytes

475 Bytes

448 Bytes

140 Bytes

387 Bytes

201 Bytes

317 Bytes

333 Bytes

404 Bytes

466 Bytes

415 Bytes

230 Bytes

241 Bytes

234 Bytes

382 Bytes

477 Bytes

434 Bytes

353 Bytes

287 Bytes

292 Bytes

104 Bytes

158 Bytes

550 Bytes

903 Bytes

474 Bytes

301 Bytes

696 Bytes

251 Bytes

295 Bytes

591 Bytes

926 Bytes

160 Bytes

459 Bytes

573 Bytes

654 Bytes

478 Bytes

351 Bytes

815 Bytes

452 Bytes

378 Bytes

645 Bytes

176 Bytes

244 Bytes

481 Bytes

299 Bytes

707 Bytes

659 Bytes

774 Bytes

894 Bytes

794 Bytes

568 Bytes

267 Bytes

996 Bytes

569 Bytes

155 Bytes

762 Bytes

446 Bytes

730 Bytes

338 Bytes

481 Bytes

371 Bytes

731 Bytes

537 Bytes

1006 Bytes

467 Bytes

557 Bytes

628 Bytes

855 Bytes

764 Bytes

162 Bytes

753 Bytes

309 Bytes

536 Bytes

537 Bytes

799 Bytes

850 Bytes

754 Bytes

491 Bytes

326 Bytes

308 Bytes

815 Bytes

936 Bytes

754 Bytes

669 Bytes

409 Bytes

387 Bytes

118 Bytes

217 Bytes

1.27 KB

560 Bytes

616 Bytes

944 Bytes

358 Bytes

481 Bytes

868 Bytes

250 Bytes

893 Bytes

822 Bytes

877 Bytes

587 Bytes

686 Bytes

1.13 KB

551 Bytes

666 Bytes

1.21 KB

256 Bytes

416 Bytes

596 Bytes

567 Bytes

1003 Bytes

1.06 KB

920 Bytes

1.08 KB

850 Bytes

367 Bytes

1.41 KB

251 Bytes

562 Bytes

1.04 KB

473 Bytes

651 Bytes

509 Bytes

1010 Bytes

761 Bytes

667 Bytes

1.04 KB

938 Bytes

1.18 KB

268 Bytes

1.02 KB

404 Bytes

1.01 KB

927 Bytes

1.07 KB

607 Bytes

682 Bytes

481 Bytes

1.04 KB

888 Bytes

611 Bytes

536 Bytes

206 Bytes

271 Bytes

1.66 KB

624 Bytes

578 Bytes

1.21 KB

571 Bytes

569 Bytes

1.66 KB

1.64 KB

329 Bytes

1.15 KB

1.03 KB

1.59 KB

802 Bytes

779 Bytes

1.49 KB

742 Bytes

757 Bytes

1.58 KB

311 Bytes

561 Bytes

569 Bytes

563 Bytes

1.23 KB

1.34 KB

2.14 KB

1.41 KB

1.5 KB

548 Bytes

1.86 KB

254 Bytes

695 Bytes

1.29 KB

590 Bytes

753 Bytes

600 Bytes

1001 Bytes

829 Bytes

1.45 KB

1.53 KB

294 Bytes

1.91 KB

772 Bytes

1.31 KB

1.2 KB

1.54 KB

1.42 KB

648 Bytes

789 Bytes

569 Bytes

1.38 KB

784 Bytes

685 Bytes

205 Bytes

190 Bytes

429 Bytes

635 Bytes

244 Bytes

277 Bytes

511 Bytes

216 Bytes

288 Bytes

484 Bytes

616 Bytes

154 Bytes

360 Bytes

427 Bytes

424 Bytes

343 Bytes

346 Bytes

536 Bytes

364 Bytes

269 Bytes

475 Bytes

200 Bytes

197 Bytes

243 Bytes

295 Bytes

525 Bytes

532 Bytes

720 Bytes

604 Bytes

529 Bytes

434 Bytes

252 Bytes

660 Bytes

410 Bytes

180 Bytes

539 Bytes

354 Bytes

541 Bytes

251 Bytes

368 Bytes

261 Bytes

492 Bytes

391 Bytes

519 Bytes

368 Bytes

394 Bytes

455 Bytes

602 Bytes

569 Bytes

185 Bytes

520 Bytes

262 Bytes

394 Bytes

398 Bytes

547 Bytes

598 Bytes

549 Bytes

316 Bytes

311 Bytes

271 Bytes

545 Bytes

631 Bytes

532 Bytes

504 Bytes

301 Bytes

321 Bytes

127 Bytes

129 Bytes

276 Bytes

356 Bytes

175 Bytes

186 Bytes

324 Bytes

185 Bytes

256 Bytes

315 Bytes

330 Bytes

131 Bytes

224 Bytes

270 Bytes

248 Bytes

193 Bytes

195 Bytes

295 Bytes

255 Bytes

221 Bytes

289 Bytes

169 Bytes

147 Bytes

177 Bytes

190 Bytes

303 Bytes

245 Bytes

409 Bytes

322 Bytes

295 Bytes

267 Bytes

218 Bytes

334 Bytes

242 Bytes

162 Bytes

305 Bytes

230 Bytes

311 Bytes

192 Bytes

242 Bytes

233 Bytes

299 Bytes

260 Bytes

303 Bytes

222 Bytes

233 Bytes

291 Bytes

320 Bytes

368 Bytes

188 Bytes

275 Bytes

177 Bytes

268 Bytes

254 Bytes

307 Bytes

339 Bytes

306 Bytes

167 Bytes

197 Bytes

168 Bytes

288 Bytes

342 Bytes

324 Bytes

307 Bytes

221 Bytes

243 Bytes

98 Bytes

124 Bytes

314 Bytes

453 Bytes

268 Bytes

202 Bytes

364 Bytes

183 Bytes

192 Bytes

336 Bytes

411 Bytes

132 Bytes

234 Bytes

325 Bytes

253 Bytes

215 Bytes

240 Bytes

359 Bytes

278 Bytes

275 Bytes

356 Bytes

131 Bytes

161 Bytes

257 Bytes

216 Bytes

358 Bytes

271 Bytes

519 Bytes

384 Bytes

335 Bytes

295 Bytes

165 Bytes

411 Bytes

322 Bytes

126 Bytes

393 Bytes

270 Bytes

389 Bytes

198 Bytes

309 Bytes

208 Bytes

367 Bytes

286 Bytes

399 Bytes

229 Bytes

313 Bytes

367 Bytes

421 Bytes

406 Bytes

140 Bytes

367 Bytes

200 Bytes

289 Bytes

295 Bytes

369 Bytes

422 Bytes

375 Bytes

216 Bytes

230 Bytes

212 Bytes

338 Bytes

439 Bytes

383 Bytes

337 Bytes

253 Bytes

271 Bytes

103 Bytes

154 Bytes

517 Bytes

832 Bytes

443 Bytes

291 Bytes

608 Bytes

243 Bytes

288 Bytes

541 Bytes

821 Bytes

157 Bytes

437 Bytes

526 Bytes

567 Bytes

448 Bytes

341 Bytes

711 Bytes

415 Bytes

351 Bytes

590 Bytes

175 Bytes

233 Bytes

447 Bytes

290 Bytes

636 Bytes

622 Bytes

852 Bytes

797 Bytes

716 Bytes

522 Bytes

243 Bytes

889 Bytes

516 Bytes

153 Bytes

694 Bytes

412 Bytes

669 Bytes

308 Bytes

460 Bytes

343 Bytes

661 Bytes

488 Bytes

956 Bytes

436 Bytes

498 Bytes

559 Bytes

781 Bytes

693 Bytes

158 Bytes

673 Bytes

297 Bytes

477 Bytes

496 Bytes

728 Bytes

777 Bytes

689 Bytes

466 Bytes

314 Bytes

290 Bytes

716 Bytes

850 Bytes

695 Bytes

646 Bytes

366 Bytes

372 Bytes

122 Bytes

212 Bytes

1.17 KB

523 Bytes

592 Bytes

869 Bytes

351 Bytes

447 Bytes

792 Bytes

245 Bytes

859 Bytes

759 Bytes

795 Bytes

535 Bytes

650 Bytes

1.02 KB

510 Bytes

618 Bytes

1.15 KB

252 Bytes

370 Bytes

555 Bytes

551 Bytes

907 Bytes

1.01 KB

984 Bytes

994 Bytes

791 Bytes

359 Bytes

1.29 KB

1023 Bytes

243 Bytes

991 Bytes

517 Bytes

973 Bytes

431 Bytes

615 Bytes

471 Bytes

927 Bytes

709 Bytes

622 Bytes

1006 Bytes

856 Bytes

1.07 KB

263 Bytes

952 Bytes

383 Bytes

973 Bytes

898 Bytes

1003 Bytes

574 Bytes

653 Bytes

439 Bytes

962 Bytes

969 Bytes

844 Bytes

588 Bytes

497 Bytes

209 Bytes

259 Bytes

1.55 KB

601 Bytes

556 Bytes

1.15 KB

543 Bytes

558 Bytes

1.58 KB

1.52 KB

323 Bytes

1.09 KB

956 Bytes

1.49 KB

774 Bytes

752 Bytes

1.36 KB

699 Bytes

717 Bytes

1.49 KB

305 Bytes

534 Bytes

539 Bytes

543 Bytes

1.14 KB

1.27 KB

2.15 KB

1.27 KB

1.42 KB

517 Bytes

1.7 KB

247 Bytes

647 Bytes

1.2 KB

564 Bytes

739 Bytes

572 Bytes

917 Bytes

1.72 KB

788 Bytes

1.37 KB

1.41 KB

1.37 KB

290 Bytes

1.79 KB

726 Bytes

1.25 KB

1.12 KB

1.42 KB

1.31 KB

616 Bytes

763 Bytes

540 Bytes

1.25 KB

769 Bytes

621 Bytes

203 Bytes

4.73 KB

2.04 KB

3.38 KB

3.1 KB

3.96 KB

4.05 KB

2.13 KB

1.17 KB

1.74 KB

1.54 KB

1.72 KB

1.93 KB

3.05 KB

1.46 KB

2.34 KB

2.1 KB

2.48 KB

2.65 KB

6.24 KB

3.15 KB

4.53 KB

4.18 KB

5.09 KB

5.45 KB

9.61 KB

7.88 KB

5.97 KB

7.58 KB

8.3 KB

5.92 KB

12.2 KB

7.94 KB

10.4 KB

11.4 KB

10.7 KB

7.09 KB

1.65 KB

4.48 KB

3.95 KB

562 Bytes

6.79 KB
-
Please register or login to post a comment