IConfideService.kt 844 Bytes
Newer Older
konghaorui committed
1 2 3
package com.ydl.confide.api

import android.app.Activity
ydl committed
4
import android.app.Application
konghaorui committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18
import android.content.Context
import android.content.Intent
import android.support.v4.app.DialogFragment
import com.alibaba.android.arouter.facade.template.IProvider

interface IConfideService : IProvider {
    fun phoneCallIntent(activity: Activity): Intent

    fun phoneCallFragment(head: String, callId: String): DialogFragment

    fun closePlayer()

    //倾诉首页
    fun openConfideHome(context: Context)
ydl committed
19 20 21 22 23 24 25 26 27 28

    fun connectionJava(id: Int, type: Int, activity: Activity, tellData: String?, callType:String?)

    fun ydlAvManagerLogin(uid: String?)

    fun startCondifeHomePage(context: Context, isSplash: Boolean)

    fun initYdlavManager(app: Application)

    fun showAxbConfirmDialog(activity: Activity?, type: Int, phoneNumber: String?)
konghaorui committed
29
}