..
This commit is contained in:
parent
274eaa3213
commit
5e7c121cf8
@ -174,11 +174,11 @@ class CompletedFilesFragment : Fragment() {
|
|||||||
if (file.name == "..") return@CompletedFilesAdapter
|
if (file.name == "..") return@CompletedFilesAdapter
|
||||||
|
|
||||||
// 💡 폴더를 길게 누르면 -> 폴더 상세 삭제 다이얼로그 호출
|
// 💡 폴더를 길게 누르면 -> 폴더 상세 삭제 다이얼로그 호출
|
||||||
if (file.isDirectory && !isSelectionMode) {
|
if (file.isDirectory && !isSelectionMode && !isProtectedFile(file)) {
|
||||||
showFolderDeleteDialog(file)
|
showFolderDeleteDialog(file)
|
||||||
}
|
}
|
||||||
// 💡 파일을 길게 누르면 -> 멀티 선택 모드 시작
|
// 💡 파일을 길게 누르면 -> 멀티 선택 모드 시작
|
||||||
else if (!isSelectionMode) {
|
else if (!isSelectionMode ) {
|
||||||
toggleSelectionMode(true)
|
toggleSelectionMode(true)
|
||||||
selectedFiles.add(file)
|
selectedFiles.add(file)
|
||||||
adapter.updateSelection(selectedFiles)
|
adapter.updateSelection(selectedFiles)
|
||||||
|
|||||||
@ -93,7 +93,7 @@ class LocationUpdateService : Service(), LocationListener {
|
|||||||
// 응답 받아서 처리
|
// 응답 받아서 처리
|
||||||
val body: ResponseBody? = response.body
|
val body: ResponseBody? = response.body
|
||||||
if (body != null) {
|
if (body != null) {
|
||||||
Blog.LOGE("Location >>> ${body.string()}")
|
// Blog.LOGE("Location >>> ${body.string()}")
|
||||||
}
|
}
|
||||||
} else Blog.LOGE("telegram Error Occurred")
|
} else Blog.LOGE("telegram Error Occurred")
|
||||||
}
|
}
|
||||||
@ -129,7 +129,7 @@ class LocationUpdateService : Service(), LocationListener {
|
|||||||
w.addr = address.getAddressLine(0)
|
w.addr = address.getAddressLine(0)
|
||||||
lastWeather.clear()
|
lastWeather.clear()
|
||||||
lastWeather.addAll(w.getSummaryInfo())
|
lastWeather.addAll(w.getSummaryInfo())
|
||||||
Blog.LOGE("Location >>> ${result}\n${lastWeather}")
|
// Blog.LOGE("Location >>> ${result}\n${lastWeather}")
|
||||||
}
|
}
|
||||||
} else Blog.LOGE("telegram Error Occurred")
|
} else Blog.LOGE("telegram Error Occurred")
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user