-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
35 additions
and
862 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1 @@ | ||
# android-map-search STEP2 | ||
|
||
## 개요 | ||
|
||
`android-map-search STEP2`에서는 지도 화면과 검색 화면 간의 네비게이션을 추가하고, 검색 기능을 확장하여 저장된 검색어 목록을 관리합니다. | ||
|
||
## 기능 | ||
|
||
- **지도 화면 표시**: 앱을 처음 실행하면 지도 화면이 표시됩니다. | ||
- **검색 화면 이동**: 검색창을 선택하면 검색 화면으로 이동합니다. | ||
- **뒤로 가기로 지도 화면 복귀**: 검색 화면에서 뒤로 가기를 하면 지도 화면으로 돌아옵니다. | ||
- **검색 기능 확장**: 카카오로컬 API를 사용하여 검색어를 입력하면 검색 결과를 표시합니다. | ||
- 검색 결과는 15개 이상 표시됩니다. | ||
- 검색 결과 목록은 세로 스크롤이 가능합니다. | ||
- 검색어는 `X` 버튼을 눌러서 삭제할 수 있습니다. | ||
- **검색 결과 선택**: 검색 결과 목록에서 항목을 선택하면 선택된 항목이 검색어 저장 목록에 추가됩니다. | ||
- 저장된 검색어 목록은 가로 스크롤이 가능합니다. | ||
- 저장된 검색어는 `X` 버튼을 눌러서 삭제할 수 있습니다. | ||
- 저장된 검색어는 앱을 재실행해도 유지됩니다. | ||
|
||
## 프로그래밍 요구 사항 | ||
|
||
- 카카오 지도 API를 사용하였습니다. | ||
- 검색 기능은 카카오로컬 API를 사용하였습니다. | ||
- 카카오 API 사용을 위한 앱 키는 안전하게 관리하였습니다. | ||
# android-map-search |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package campus.tech.kakao.map | ||
|
||
import android.os.Bundle | ||
import androidx.appcompat.app.AppCompatActivity | ||
|
||
class MainActivity : AppCompatActivity() { | ||
override fun onCreate(savedInstanceState: Bundle?) { | ||
super.onCreate(savedInstanceState) | ||
setContentView(R.layout.activity_main) | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
119 changes: 0 additions & 119 deletions
119
app/src/main/java/campus/tech/kakao/map/SearchActivity.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.