This commit is contained in:
lixiaopeng
2020-10-21 15:10:14 +08:00
parent 1d80b8145e
commit eedede61d1
7 changed files with 41 additions and 23 deletions

View File

@@ -3,6 +3,7 @@ package com.mogo.module.v2x.receiver
import android.content.BroadcastReceiver
import android.content.Context
import android.content.Intent
import android.util.Log
/**
* ugc上报反馈
@@ -10,11 +11,10 @@ import android.content.Intent
class UgcUploadStatusReceiver : BroadcastReceiver() {
override fun onReceive(context: Context, intent: Intent) {
if (intent.action == "com.v2x.ugc.upload.status"){
var id = intent.getStringExtra("id")
var id = intent.getLongExtra("id", 0)
var type = intent.getStringExtra("type")
var fromType = intent.getStringExtra("fromType")
}
}
}