标签:his ext har 发送 head center putextra pen extra
使用Anko Intent帮助器可以添加如下依赖
dependencies { compile "org.jetbrains.anko:anko-commons:$anko_version" }
val intent = Intent(this,SomeOtherActivity::class.java)
intent.putExtra("id",1000)
intent.setFlag(Intent.FLAG_ACTIVITY_SINGLE_TOP)
startActivity(intent)
简单用法
startActivity(intentFor
startActivity
描述 | 解答 |
---|---|
打电话 | makeCall(number) |
发信息 | sendSMS(number,[text]) |
浏览网页 | browse(url) |
分享文字 | share(text,[subject]) |
发送邮件 | email(email,[subject],[text]) |
注意:[]方括号中的参数是可选的。当intent是发送的时候,方法返回true
个人翻译自https://github.com/Kotlin/anko/wiki/Anko-Commons-%E2%80%93-Intents,未经授权,请勿转载。
标签:his ext har 发送 head center putextra pen extra
原文地址:https://www.cnblogs.com/sixFlower/p/9283318.html