遇到的奇葩问题汇总,会一点点加

时间:2022-01-29 00:09:59
Error while executing: am startservice com.dyh.drivingschool/com.android.tools.fd.runtime.InstantRunService
Starting service: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.dyh.drivingschool/com.android.tools.fd.runtime.InstantRunService launchParam=MultiScreenLaunchParams { mDisplayId=0 mFlags=0 } }
Error: Not found; no service started.



项目 APK 冲突,卸载模拟器或者手机上的APK文件或直接卸载到App。再次运行就好了,或者clean,Rebuild一下。



-----------------------------------------------------------------------------------------------------------------

今天在在小米手机 Redmi3 上和VIVO手机上获取后台数据时候报400异常,在三星和华为手机就正常。

具体原因还不知道。就是因为在接口中有中文字段,所以就报错,在获取到接口进行请求时进行转码就好了,

try {
    title = URLEncoder.encode(title, "UTF-8");
} catch (UnsupportedEncodingException e) {
    e.printStackTrace();
}

通过URLEncoder方法进行编码转换。