liugl
2021-01-14 40f9ac00ec5e4d6363450d1c8e0b0937cc0b1de4
app/src/main/java/com/okgoincar/netUtls/NetKit.kt
@@ -1,6 +1,7 @@
package com.okgoincar.netUtls
import android.content.Context
import android.content.Intent
import android.os.CountDownTimer
import android.os.Handler
import android.os.Looper
@@ -50,6 +51,12 @@
            clickAction(responseString)
        }
        override fun onError(code: Int, msg: String?, resposeString: String?) {
            super.onError(code, msg, resposeString)
            if (showDialog)
                dismissDialog()
        }
    })
}
@@ -68,6 +75,11 @@
        override fun success(responseString: String?) {
            dismissDialog()
            clickAction(responseString)
        }
        override fun onError(code: Int, msg: String?, resposeString: String?) {
            super.onError(code, msg, resposeString)
            dismissDialog()
        }
    })
}
@@ -89,7 +101,7 @@
    return user.toInt()
}
fun getToken(): String {
fun getToken(): String? {
    return CacheKey.getKeyStr("token")
}
@@ -130,6 +142,14 @@
    })
}
fun sendAudio(context: Context,s: String?) {
    val intent = Intent()
    intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK
    intent.action = "com.wisdom.gps.action.tts"
    intent.putExtra("msg", s)
    context.sendBroadcast(intent)
}
fun MySlabBaseActivity.callNet(
    api: String,
@@ -151,6 +171,7 @@
        override fun onError(code: Int, msg: String?, resposeString: String?) {
            super.onError(code, msg, resposeString)
            dismissDialog()
            clickActionError(msg)
        }
    })
@@ -177,6 +198,12 @@
            clickAction(responseString)
        }
        override fun onError(code: Int, msg: String?, resposeString: String?) {
            super.onError(code, msg, resposeString)
            if (showDialog)
                dismissDialog()
        }
    })
}
@@ -200,6 +227,7 @@
        }
        override fun onError(code: Int, msg: String?, resposeString: String?) {
            dismissDialog()
            clickActionError(resposeString)
        }
    })
@@ -227,7 +255,7 @@
        override fun onError(code: Int, msg: String?, resposeString: String?) {
            super.onError(code, msg, resposeString)
            dismissDialog()
            clickActionError(msg)
        }
    })
@@ -249,6 +277,10 @@
        override fun success(responseString: String?) {
            clickAction(responseString)
        }
        override fun onError(code: Int, msg: String?, resposeString: String?) {
            super.onError(code, msg, resposeString)
        }
    })
}