TonyEasy
TonyEasy
Error:Could not find com.android.support:appcompat-v7:24.2.0. Required by: CanDialog-master:app:unspecified CanDialog-master:app:unspecified > CanDialog-master:candialog:unspecified CanDialog-master:app:unspecified > CanDialog-master:candialog:unspecified > com.canyinghao:cananimation:1.0.3 CanDialog-master:app:unspecified > CanDialog-master:candialog:unspecified > com.canyinghao:caneffect:1.0.3 Please install the Android Support Repository from the Android SDK...
二维码扫描框可以改为长方形吗?
内存溢出问题
public void doHttpDeal(BaseApi basePar) { /*链接式对象返回*/ SoftReference httpOnNextListener = basePar.getListener(); if (httpOnNextListener != null && httpOnNextListener.get() != null) { httpOnNextListener.get().onNext(observable); } /*数据回调*/ observable.subscribe(subscriber); } 每次的网络请求都会产生一次订阅关系,如何才能使接口回调回来后,取消本次订阅?
如何将客户端发来的十六进制数据原样返回给客户端呢? 我现在遇到的问题是,发送给客户端之后,中间进行了ascII码转换,导致数据有问题。