Skip to content

Instantly share code, notes, and snippets.

@plateaukao
Created September 28, 2020 15:53
Show Gist options
  • Save plateaukao/da4bfa4bb97457d9e13e1737ab33ba3c to your computer and use it in GitHub Desktop.
Save plateaukao/da4bfa4bb97457d9e13e1737ab33ba3c to your computer and use it in GitHub Desktop.
@RequiresApi(Build.VERSION_CODES.N)
class LiffShareTileService : TileService() {
...
override fun onClick() {
super.onClick()
// 將 LINE Share App的主畫面叫起
val intent = Intent(this, MainActivity::class.java).apply {
addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
}
// 開啟 Activity 後,並把通知欄關閉
startActivityAndCollapse(intent)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment