摘要:
在锁屏的时候启动一个1个像素的Activity,当用户解锁以后将这个Activity结束掉。 定义一个1像素的Activity,在该Activity中动态注册自定义的广播。 class OnePixelActivity : AppCompatActivity() { private lateinit 阅读全文
摘要:
public class ProviceItem { private Path path; /** * 绘制颜色 * */ private int drawColor; public void setDrawColor(int drawColor){ this.drawColor = drawCol 阅读全文
摘要:
public class ChinaMapView extends View { private int[] colorArray = new int[]{0xFF239BD7, 0xFF30A9E5, 0xFF80CBF1, 0xFFFFFFFF};//各省地图显示的颜色 private Cont 阅读全文
摘要:
request(Api.getApiService().login(map), new OnRespListener<LoginBean>() { @Override public void onSuccess(LoginBean value) { if(value.getCode() == 200 阅读全文
摘要:
/** * 网络请求的封装 */protected <M> void request(Observable<M> api, OnRespListener<M> listener){ api.subscribeOn(Schedulers.io()) .observeOn(AndroidSchedule 阅读全文
摘要:
//Api.getApiService()为单例模式封装的Retrofit.Builder().create(xxx.class)Api.getApiService().login(map) .subscribeOn(Schedulers.io()) .observeOn(AndroidSchedu 阅读全文
摘要:
(后台中计费的方法写在Service中的新增方法中/** * 车辆保险新增 * 陈通 * @param insurance * @param request * @return * @throws IOException */ public Result insertVehicleInsurance 阅读全文
摘要:
//计费方法 Vehicle_sum:function(){ var sum = /^[0-9]\d{0,5}$/; var trafficCompulsoryInsuranceCost=$("#vehicleInsurance_add_trafficCompulsoryInsuranceCost" 阅读全文
摘要:
public class MyImageSpan extends ImageSpan { public MyImageSpan(Context context, Bitmap b) { super(context, b); } @Override public void draw(@NonNull 阅读全文