-
Notifications
You must be signed in to change notification settings - Fork 21
영화앱 필터(장르, 국가) 선택 #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <resources> | ||
| <string-array name="genre"> | ||
|
|
||
| <item> 전체 </item> | ||
| <item> 드라마 </item> | ||
| <item> 판타지 </item> | ||
| <item> 서부 </item> | ||
| <item> 공포 </item> | ||
| <item> 로맨스 </item> | ||
| <item> 모험 </item> | ||
| <item> 스릴러 </item> | ||
| <item> 느와르 </item> | ||
| <item> 컬트 </item> | ||
| <item> 다큐멘터리 </item> | ||
| <item> 코미디 </item> | ||
| <item> 가족 </item> | ||
| <item> 미스터리 </item> | ||
| <item> 전쟁 </item> | ||
| <item> 애니메이션 </item> | ||
| <item> 범죄 </item> | ||
| <item> 뮤지컬 </item> | ||
| <item> SF </item> | ||
| <item> 액션 </item> | ||
| <item> 무협 </item> | ||
| <item> 에로 </item> | ||
| <item> 서스펜스 </item> | ||
| <item> 서사 </item> | ||
| <item> 블랙코미디 </item> | ||
| <item> 실험 </item> | ||
| <item> 영화카툰 </item> | ||
| <item> 영화음악 </item> | ||
| <item> 영화패러디포스터 </item> | ||
|
|
||
| </string-array> | ||
|
|
||
| <string-array name="country"> | ||
|
|
||
| <item> 전체 </item> | ||
| <item> 한국 </item> | ||
| <item> 일본 </item> | ||
| <item> 미국 </item> | ||
| <item> 홍콩 </item> | ||
| <item> 영국 </item> | ||
| <item> 프랑스 </item> | ||
| <item> 기타 </item> | ||
|
|
||
| </string-array> | ||
|
|
||
| <string-array name="countryCode"> | ||
|
|
||
| <item>ALL</item> | ||
| <item>KR</item> | ||
| <item>JP</item> | ||
| <item>US</item> | ||
| <item>HK</item> | ||
| <item>GB</item> | ||
| <item>FR</item> | ||
| <item>ETC</item> | ||
|
|
||
| </string-array> | ||
|
|
||
| </resources> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 고생하셨습니다. 확실히 영화를 검색하는 것에 있어 필터를 검색하는 것은 좋은 아이디어라고 생각합니다.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 위에서 조언해주신대로 presenter에서 처리하는 방법을 생각해봐야겠네요 |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| #Sat Dec 15 16:29:45 KST 2018 | ||
| #Tue Jan 15 19:23:22 KST 2019 | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
genre와country는MainPresenter에서 처리되기 때문에Activity는 해당 정보를 가지고 있지 않는게 좋아 보입니다. 이 값은 Setter를 이용하여 Presenter로 넘겨주면 좋을 것 같습니다.