-
Notifications
You must be signed in to change notification settings - Fork 0
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
[FEAT/#59] 네이버 길찾기 기능 및 함수 구현 #94
Conversation
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.
👍
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.
우왕 수고하셨습니다!!
} | ||
context.startActivity(marketIntent) | ||
} else { | ||
context.startActivity(intent) |
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.
context.startActivity(intent) | |
Intent(Intent.ACTION_VIEW, Uri.parse(url)).apply { | |
addCategory(Intent.CATEGORY_BROWSABLE) | |
context.startActivity(this) | |
} |
P3: 위에서 intent를 저장하지 않고 이렇게도 사용 가능합니다!
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.
수정했습니다!
val marketIntent = Intent(Intent.ACTION_VIEW).apply { | ||
data = Uri.parse("market://details?id=com.nhn.android.nmap") | ||
} | ||
context.startActivity(marketIntent) |
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.
P3: 여기도 꼭 필요한 것이 아니라면 변수에 저장하기 보다는 객체를 바로 사용해주는 것이 어떨까요?
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.
수정했습니다! 감사합니다!
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.
어푸푸~~!
} catch (e: PackageManager.NameNotFoundException) { | ||
false | ||
} | ||
if (!isInstalled) { |
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.
if (!isInstalled) { | |
if (isInstalled) { |
P4: 이렇게 ! 안붙은거 먼저 해주면 너무 좋을 것 같아요..!!
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.
수정했습니다!
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.
고생하셨습니다~!
Related issue 🛠
Work Description ✏️
Screenshot 📸
default.mp4
default.mp4
To Reviewers 📢