获取/设置新创建的Drawable的URI

时间:2019-04-27 02:22:25

标签: android kotlin

我的代码创建了一个动态的可绘制对象:

private fun shareWin() {
    val winner = arguments!!.getString("winner", "")
    val maxLevel = 5
    val winnerGraphic = WinnerGraphic(...)
    congratulationsImage.setImageDrawable(winnerGraphic)
    val intent = Intent(Intent.ACTION_SEND)
    // put new Drawable in Intent
}

class WinnerGraphic (...) : Drawable() {

如何获取/设置此新Drawable的URI,以便随后可以在Intent中将其发送到另一个应用程序(例如Facebook Messenger)?

0 个答案:

没有答案