Created
July 18, 2018 10:26
-
-
Save sajjadyousefnia/c313a684bd679b7b235b396fdd02dc00 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// روش معمول | |
fun createIntent(intentData: String, intentAction: String): Intent { | |
val intent = Intent() | |
intent.action = intentAction | |
intent.data=Uri.parse(intentData) | |
return intent | |
} | |
// روش پیشرفته و زنجیری | |
fun createIntent(intentData: String, intentAction: String) = | |
Intent().apply { action = intentAction } | |
.apply { data = Uri.parse(intentData) }سی |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment