Created
September 28, 2020 15:53
-
-
Save plateaukao/da4bfa4bb97457d9e13e1737ab33ba3c to your computer and use it in GitHub Desktop.
This file contains 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
@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