How to use LocalBroadcastManager?

后端 未结 13 3243
天命终不由人
天命终不由人 2020-11-21 04:15

How to use/locate LocalBroadcastManager as described in google docs and Service broadcast doc?

I tried to google it, but there is no code available to s

13条回答
  •  遇见更好的自我
    2020-11-21 05:13

    enter code here if (createSuccses){
                            val userDataChange=Intent(BRODCAST_USER_DATA_CHANGE)
                            LocalBroadcastManager.getInstance(this).sendBroadcast(
                                userDataChange
                            )
                            enableSpinner(false)
                            finish()
    

提交回复
热议问题