public void onResponse(String response) {
|
873
|
|
Log.e(TAG, "onResponse: getChargingPile11=" + response);
|
|
874
|
|
String code = JsonUtils.getKeyResult(response, "code");
|
|
875
|
|
if (code.equals("200")) {
|
|
876
|
|
String group_id = JsonUtils.getKeyResult(response, "group_id");
|
|
877
|
|
String eletype = JsonUtils.getKeyResult(response, "eletype");
|
|
878
|
|
String type = JsonUtils.getKeyResult(response, "type");
|
|
879
|
|
String pile_code = JsonUtils.getKeyResult(response, "pile_code");
|
|
880
|
|
if (type.equals("jd")) {
|
|
881
|
|
startHssy(pile_code, group_id, type);
|
|
882
|
|
} else {
|
|
883
|
|
Intent intent = new Intent(getApplicationContext(), TLDLoadingActivity.class);
|
|
884
|
|
intent.putExtra("type", type);
|
|
885
|
|
intent.putExtra("eletype", eletype);
|
|
886
|
|
intent.putExtra("chargingCode", pile_code);
|
|
887
|
|
intent.putExtra("group_id", group_id);
|
|
888
|
|
startActivity(intent);
|
|
889
|
|
finish();
|
|
890
|
|
}
|
|
891
|
|
|
|
892
|
|
} else {
|
|
893
|
|
String error_message = JsonUtils.getKeyResult(response, "error_message");
|
|
894
|
|
ToastUtil.showToast(getApplicationContext(), error_message, Toast.LENGTH_SHORT);
|
|
895
|
|
new Handler().postDelayed(new Runnable() {
|
|
896
|
|
public void run() {
|
|
897
|
|
if (mCamera != null) {
|
|
898
|
|
scanRestart();
|
|
899
|
|
}
|
|
900
|
|
|
|
901
|
|
}
|
|
902
|
|
}, 1500);
|
|
903
|
|
}
|
|
904
|
|
}
|
|
905
|
|
});
|
|
906
|
|
}
|
|
907
|
|
|
|
908
|
|
private void startHssy(String pile_code, String group_id, String type) {
|
|
909
|
|
long appTime1 = System.currentTimeMillis() / 1000;
|
|
910
|
|
long updatetime = appTime1 - MainMapActivity.cha - 3;
|
|
911
|
|
String token = String.valueOf(updatetime);
|
|
912
|
|
String s = "group_id=" + group_id + "&password=" + MainApplication.userPassword + "&pile_code=" + pile_code + "&timer=" + token + "&type=" + type + "&user_id=" + MainApplication.userId + "&key=661f9efdcb4f46fe7ab5f2e78a705a2a";
|
|
913
|
|
String url = MainApplication.url + "/zhannew/basic/web/index.php/interface/start_v2?" +
|
|
914
|
|
"ver=1.0&type=" + type + "&timer=" + token + "&user_id=" + MainApplication.userId + "&pile_code="
|
|
915
|
|
+ pile_code + "&group_id=" + group_id + "&password=" + MainApplication.userPassword + "&sign=" + Md5Util.md5(s);
|
|
916
|
|
Log.e(TAG, "startHssy: url=" + url);
|
|
917
|
|
OkHttpUtils.get().url(url).build().execute(new StringCallback() {
|
|
918
|
|
@Override
|
|
919
|
|
public void onError(Call call, Exception e) {
|
|
920
|
|
|
|
921
|
|
}
|
|
922
|
|
|
|
923
|
|
@Override
|
|
924
|
|
public void onResponse(String response) {
|
|
925
|
|
Log.e(TAG, "onResponse: startHssy=" + response);
|
|
926
|
|
String code = JsonUtils.getKeyResult(response, "code");
|
|
927
|
|
if (code.equals("200")) {
|
|
928
|
|
MainApplication.isAppStart = true;
|
|
929
|
|
ProfileManager.getInstance().setAppStart(getApplicationContext(), MainApplication.isAppStart);
|
|
930
|
|
startActivity(new Intent(getApplicationContext(), ChargingStatusActivity.class));
|
|
931
|
|
finish();
|
|
932
|
|
} else {
|
|
933
|
|
String error_message = JsonUtils.getKeyResult(response, "error_message");
|
|
934
|
|
ToastUtil.showToast(getApplicationContext(), error_message, Toast.LENGTH_SHORT);
|
|
935
|
|
new Handler().postDelayed(new Runnable() {
|
|
936
|
|
public void run() {
|
|
937
|
|
if (mCamera != null) {
|
|
938
|
|
scanRestart();
|
|
939
|
|
}
|
|
940
|
|
}
|
|
941
|
|
}, 1500);
|
|
942
|
|
}
|
|
943
|
|
}
|
|
944
|
|
});
|
|
945
|
|
}
|
|
946
|
|
|
|
947
|
|
|
|
948
|
|
}
|
|
|
183
|
// }
|
|
|
184
|
//
|
|
|
185
|
// @Override
|
|
|
186
|
// public boolean onKeyDown(int keyCode, KeyEvent event) {
|
|
|
187
|
// System.out.println("Page01 -->onKeyDown: keyCode: " + keyCode);
|
|
|
188
|
// if (KeyEvent.KEYCODE_HOME == keyCode) {
|
|
|
189
|
// System.out.println("HOME has been pressed yet ...");
|
|
|
190
|
// // android.os.Process.killProcess(android.os.Process.myPid());
|
|
|
191
|
// Toast.makeText(getApplicationContext(), "HOME 键已被禁用...",
|
|
|
192
|
// Toast.LENGTH_LONG).show();
|
|
|
193
|
// return true;
|
|
|
194
|
// }
|
|
|
195
|
// return super.onKeyDown(keyCode, event); // 不会回到 home 页面
|
|
|
196
|
// }
|
|
|
197
|
//
|
|
|
198
|
// @Override
|
|
|
199
|
// protected void onResume() {
|
|
|
200
|
// super.onResume();
|
|
|
201
|
// scanRestart();
|
|
|
202
|
// }
|
|
|
203
|
//
|
|
|
204
|
// private void releaseCamera() {
|
|
|
205
|
// if (mCamera != null) {
|
|
|
206
|
// previewing = false;
|
|
|
207
|
// mCamera.setPreviewCallback(null);
|
|
|
208
|
// mCamera.release();
|
|
|
209
|
// mCamera = null;
|
|
|
210
|
// }
|
|
|
211
|
// }
|
|
|
212
|
//
|
|
|
213
|
// private Runnable doAutoFocus = new Runnable() {
|
|
|
214
|
// public void run() {
|
|
|
215
|
// if (previewing)
|
|
|
216
|
//
|
|
|
217
|
// mCamera.autoFocus(autoFocusCB);
|
|
|
218
|
// }
|
|
|
219
|
// };
|
|
|
220
|
//
|
|
|
221
|
// PreviewCallback previewCb = new PreviewCallback() {
|
|
|
222
|
// public void onPreviewFrame(byte[] data, Camera camera) {
|
|
|
223
|
// try {
|
|
|
224
|
// Size size = camera.getParameters().getPreviewSize();
|
|
|
225
|
//
|
|
|
226
|
// // 这里需要将获取的data翻转一下,因为相机默认拿的的横屏的数据
|
|
|
227
|
// byte[] rotatedData = new byte[data.length];
|
|
|
228
|
// for (int y = 0; y < size.height; y++) {
|
|
|
229
|
// for (int x = 0; x < size.width; x++)
|
|
|
230
|
// rotatedData[x * size.height + size.height - y - 1] = data[x
|
|
|
231
|
// + y * size.width];
|
|
|
232
|
// }
|
|
|
233
|
//
|
|
|
234
|
// // 宽高也要调整
|
|
|
235
|
// int tmp = size.width;
|
|
|
236
|
// size.width = size.height;
|
|
|
237
|
// size.height = tmp;
|
|
|
238
|
//
|
|
|
239
|
// initCrop();
|
|
|
240
|
//
|
|
|
241
|
// Image barcode = new Image(size.width, size.height, "Y800");
|
|
|
242
|
// barcode.setData(rotatedData);
|
|
|
243
|
// barcode.setCrop(mCropRect.left, mCropRect.top, mCropRect.width(),
|
|
|
244
|
// mCropRect.height());
|
|
|
245
|
//
|
|
|
246
|
// int result = mImageScanner.scanImage(barcode);
|
|
|
247
|
// String resultStr = null;
|
|
|
248
|
//
|
|
|
249
|
// if (result != 0) {
|
|
|
250
|
// SymbolSet syms = mImageScanner.getResults();
|
|
|
251
|
// for (Symbol sym : syms) {
|
|
|
252
|
// resultStr = sym.getData();
|
|
|
253
|
// }
|
|
|
254
|
// }
|
|
|
255
|
//
|
|
|
256
|
// if (!TextUtils.isEmpty(resultStr)) {
|
|
|
257
|
// previewing = false;
|
|
|
258
|
// mCamera.setPreviewCallback(null);
|
|
|
259
|
// mCamera.stopPreview();
|
|
|
260
|
//
|
|
|
261
|
// barcodeScanned = true;
|
|
|
262
|
//// ToastUtil.showToast(getApplicationContext(),resultStr,Toast.LENGTH_SHORT);
|
|
|
263
|
//// Log.e(TAG, "onPreviewFrame: result="+resultStr );
|
|
|
264
|
//
|
|
|
265
|
// getChargingPile(resultStr);
|
|
|
266
|
//
|
|
|
267
|
// }
|
|
|
268
|
//
|
|
|
269
|
// } catch (Exception e) {
|
|
|
270
|
// e.printStackTrace();
|
|
|
271
|
// }
|
|
|
272
|
// }
|
|
|
273
|
// };
|
|
|
274
|
//
|
|
|
275
|
// // Mimic continuous auto-focusing
|
|
|
276
|
// AutoFocusCallback autoFocusCB = new AutoFocusCallback() {
|
|
|
277
|
// public void onAutoFocus(boolean success, Camera camera) {
|
|
|
278
|
// autoFocusHandler.postDelayed(doAutoFocus, 1000);
|
|
|
279
|
// }
|
|
|
280
|
// };
|
|
|
281
|
//
|
|
|
282
|
// /**
|
|
|
283
|
// * 初始化截取的矩形区域
|
|
|
284
|
// */
|
|
|
285
|
// private void initCrop() {
|
|
|
286
|
// int cameraWidth = mCameraManager.getCameraResolution().y;
|
|
|
287
|
// int cameraHeight = mCameraManager.getCameraResolution().x;
|
|
|
288
|
//
|
|
|
289
|
// /** 获取布局中扫描框的位置信息 */
|
|
|
290
|
// int[] location = new int[2];
|
|
|
291
|
// scanCropView.getLocationInWindow(location);
|
|
|
292
|
//
|
|
|
293
|
// int cropLeft = location[0];
|
|
|
294
|
// int cropTop = location[1] - getStatusBarHeight();
|
|
|
295
|
//
|
|
|
296
|
// int cropWidth = scanCropView.getWidth();
|
|
|
297
|
// int cropHeight = scanCropView.getHeight();
|
|
|
298
|
//
|
|
|
299
|
// /** 获取布局容器的宽高 */
|
|
|
300
|
// int containerWidth = scanContainer.getWidth();
|
|
|
301
|
// int containerHeight = scanContainer.getHeight();
|
|
|
302
|
//
|
|
|
303
|
// /** 计算最终截取的矩形的左上角顶点x坐标 */
|
|
|
304
|
// int x = cropLeft * cameraWidth / containerWidth;
|
|
|
305
|
// /** 计算最终截取的矩形的左上角顶点y坐标 */
|
|
|
306
|
// int y = cropTop * cameraHeight / containerHeight;
|
|
|
307
|
//
|
|
|
308
|
// /** 计算最终截取的矩形的宽度 */
|
|
|
309
|
// int width = cropWidth * cameraWidth / containerWidth;
|
|
|
310
|
// /** 计算最终截取的矩形的高度 */
|
|
|
311
|
// int height = cropHeight * cameraHeight / containerHeight;
|
|
|
312
|
//
|
|
|
313
|
// /** 生成最终的截取的矩形 */
|
|
|
314
|
// mCropRect = new Rect(x, y, width + x, height + y);
|
|
|
315
|
// }
|
|
|
316
|
//
|
|
|
317
|
// private int getStatusBarHeight() {
|
|
|
318
|
// try {
|
|
|
319
|
// Class<?> c = Class.forName("com.android.internal.R$dimen");
|
|
|
320
|
// Object obj = c.newInstance();
|
|
|
321
|
// Field field = c.getField("status_bar_height");
|
|
|
322
|
// int x = Integer.parseInt(field.get(obj).toString());
|
|
|
323
|
// return getResources().getDimensionPixelSize(x);
|
|
|
324
|
// } catch (Exception e) {
|
|
|
325
|
// e.printStackTrace();
|
|
|
326
|
// }
|
|
|
327
|
// return 0;
|
|
|
328
|
// }
|
|
|
329
|
//
|
|
|
330
|
// @Override
|
|
|
331
|
// public void onClick(View v) {
|
|
|
332
|
// switch (v.getId()) {
|
|
|
333
|
// case R.id.capture_flashlight:
|
|
|
334
|
// light();
|
|
|
335
|
// break;
|
|
|
336
|
// case R.id.tv_input_code:
|
|
|
337
|
// startActivity(new Intent(getApplication(), InputCodeActivity.class));
|
|
|
338
|
// finish();
|
|
|
339
|
// break;
|
|
|
340
|
// case R.id.iv_back:
|
|
|
341
|
// finish();
|
|
|
342
|
// break;
|
|
|
343
|
// }
|
|
|
344
|
// }
|
|
|
345
|
//
|
|
|
346
|
// private void checkJd(final String chargingCode) {
|
|
|
347
|
// String url = MainApplication.url + "/zhannew/basic/web/index.php/polyelectric/info?pile_code=" + chargingCode;
|
|
|
348
|
// Log.e("jd_url===", url);
|
|
|
349
|
// OkHttpUtils.get()
|
|
|
350
|
// .url(url)
|
|
|
351
|
// .build()
|
|
|
352
|
// .execute(new StringCallback() {
|
|
|
353
|
// @Override
|
|
|
354
|
// public void onError(Call call, Exception e) {
|
|
|
355
|
//
|
|
|
356
|
// }
|
|
|
357
|
//
|
|
|
358
|
// @Override
|
|
|
359
|
// public void onResponse(String response) {
|
|
|
360
|
// dialog.cancel();
|
|
|
361
|
// String code = JsonUtils.getKeyResult(response, "code");
|
|
|
362
|
// if (code.equals("200")) {
|
|
|
363
|
// String group_id = JsonUtils.getKeyResult(response, "group_id");
|
|
|
364
|
// startJdCharging(group_id, chargingCode);
|
|
|
365
|
// } else {
|
|
|
366
|
// String error_messge = JsonUtils.getKeyResult(response, "error_message");
|
|
|
367
|
// if (!error_messge.equals("")) {
|
|
|
368
|
// ToastUtil.showToast(getApplicationContext(), error_messge, Toast.LENGTH_SHORT);
|
|
|
369
|
// new Handler().postDelayed(new Runnable() {
|
|
|
370
|
// public void run() {
|
|
|
371
|
// scanRestart();
|
|
|
372
|
// }
|
|
|
373
|
// }, 1500);
|
|
|
374
|
//
|
|
|
375
|
// }
|
|
|
376
|
// }
|
|
|
377
|
// }
|
|
|
378
|
// });
|
|
|
379
|
// }
|
|
|
380
|
//
|
|
|
381
|
// private void startJdCharging(String zhan_id, String zhuang_id) {
|
|
|
382
|
// dialog.show();
|
|
|
383
|
// long appTime1 = System.currentTimeMillis() / 1000;
|
|
|
384
|
// long updatetime = appTime1 - MainMapActivity.cha - 3;
|
|
|
385
|
// String token = String.valueOf(updatetime);
|
|
|
386
|
// String s = "group_id=" + zhan_id + "&pile_code=" + zhuang_id + "&timer=" + token + "&user_id=" + MainApplication.userId + "&key=661f9efdcb4f46fe7ab5f2e78a705a2a";
|
|
|
387
|
// Log.e("s_url==", s);
|
|
|
388
|
// final String url = MainApplication.url + "/zhannew/basic/web/index.php/polyelectric/start?ver=1.0&sign=" + Md5Util.md5(s) + "&timer=" + token + "&group_id=" + zhan_id + "&user_id=" + MainApplication.userId + "&pile_code=" + zhuang_id;
|
|
|
389
|
// Log.e("jd_url==", url);
|
|
|
390
|
// OkHttpUtils.get()
|
|
|
391
|
// .url(url)
|
|
|
392
|
// .build()
|
|
|
393
|
// .execute(new StringCallback() {
|
|
|
394
|
// @Override
|
|
|
395
|
// public void onError(Call call, Exception e) {
|
|
|
396
|
//
|
|
|
397
|
// }
|
|
|
398
|
//
|
|
|
399
|
// @Override
|
|
|
400
|
// public void onResponse(String response) {
|
|
|
401
|
// Log.e("start===", response);
|
|
|
402
|
// dialog.cancel();
|
|
|
403
|
// String code = JsonUtils.getKeyResult(response, "code");
|
|
|
404
|
// if (code != null) {
|
|
|
405
|
// if (code.equals("400")) {
|
|
|
406
|
// String error_message = JsonUtils.getKeyResult(response, "error_message");
|
|
|
407
|
// String urll = "http://123.57.6.131/zhannew/basic/web/index.php/log/write";
|
|
|
408
|
// OkHttpUtils.post()
|
|
|
409
|
// .url(urll)
|
|
|
410
|
// .addParams("url", url)
|
|
|
411
|
// .addParams("code", code)
|
|
|
412
|
// .addParams("message", error_message)
|
|
|
413
|
// .addParams("type", "android")
|
|
|
414
|
// .build()
|
|
|
415
|
// .execute(new StringCallback() {
|
|
|
416
|
// @Override
|
|
|
417
|
// public void onError(Call call, Exception e) {
|
|
|
418
|
//
|
|
|
419
|
// }
|
|
|
420
|
//
|
|
|
421
|
// @Override
|
|
|
422
|
// public void onResponse(String response) {
|
|
|
423
|
//
|
|
|
424
|
// }
|
|
|
425
|
// });
|
|
|
426
|
// new AlertDialog(MyCaptureActivity.this).builder()
|
|
|
427
|
// .setMsg(error_message)
|
|
|
428
|
// .setNegativeButton("确定", new View.OnClickListener() {
|
|
|
429
|
// @Override
|
|
|
430
|
// public void onClick(View v) {
|
|
|
431
|
// if (mCamera != null) {
|
|
|
432
|
// scanRestart();
|
|
|
433
|
// }
|
|
|
434
|
//// startActivity(new Intent(getApplication(),ChargingStatusActivity.class));
|
|
|
435
|
//
|
|
|
436
|
//// startCharging();
|
|
|
437
|
// }
|
|
|
438
|
// }).show();
|
|
|
439
|
//
|
|
|
440
|
//
|
|
|
441
|
// } else if (code.equals("200")) {
|
|
|
442
|
// Intent intent = new Intent(getApplication(), ChargingStatusActivity.class);
|
|
|
443
|
//// intent.putExtra("stubId",zhuang_num);
|
|
|
444
|
//// intent.putExtra("stubGroupId",stubGroupId);
|
|
|
445
|
// intent.putExtra("type", "jd");
|
|
|
446
|
// startActivity(intent);
|
|
|
447
|
// if (mCamera != null) {
|
|
|
448
|
// scanRestart();
|
|
|
449
|
// }
|
|
|
450
|
// finish();
|
|
|
451
|
// } else if (code.equals("104")) {
|
|
|
452
|
// String error_message = JsonUtils.getKeyResult(response, "error_message");
|
|
|
453
|
// String urll = "http://123.57.6.131/zhannew/basic/web/index.php/log/write";
|
|
|
454
|
// OkHttpUtils.post()
|
|
|
455
|
// .url(urll)
|
|
|
456
|
// .addParams("url", url)
|
|
|
457
|
// .addParams("code", code)
|
|
|
458
|
// .addParams("message", error_message)
|
|
|
459
|
// .addParams("type", "android")
|
|
|
460
|
// .build()
|
|
|
461
|
// .execute(new StringCallback() {
|
|
|
462
|
// @Override
|
|
|
463
|
// public void onError(Call call, Exception e) {
|
|
|
464
|
//
|
|
|
465
|
// }
|
|
|
466
|
//
|
|
|
467
|
// @Override
|
|
|
468
|
// public void onResponse(String response) {
|
|
|
469
|
//
|
|
|
470
|
// }
|
|
|
471
|
// });
|
|
|
472
|
// new AlertDialog(MyCaptureActivity.this).builder()
|
|
|
473
|
// .setMsg("您的余额不足1元,可能无法满\n足您此次充电")
|
|
|
474
|
// .setPositiveButton("去充值", new View.OnClickListener() {
|
|
|
475
|
// @Override
|
|
|
476
|
// public void onClick(View v) {
|
|
|
477
|
// startActivity(new Intent(getApplication(), AccountRechargeActivity.class));
|
|
|
478
|
// }
|
|
|
479
|
// }).setNegativeButton("取消", new View.OnClickListener() {
|
|
|
480
|
// @Override
|
|
|
481
|
// public void onClick(View v) {
|
|
|
482
|
// if (mCamera != null) {
|
|
|
483
|
// scanRestart();
|
|
|
484
|
// }
|
|
|
485
|
//// startActivity(new Intent(getApplication(),ChargingStatusActivity.class));
|
|
|
486
|
// }
|
|
|
487
|
// }).show();
|
|
|
488
|
// } else if (code.equals("0")) {
|
|
|
489
|
// if (mCamera != null) {
|
|
|
490
|
// scanRestart();
|
|
|
491
|
// }
|
|
|
492
|
// ToastUtil.showToast(getApplicationContext(), "该桩正在充电中,请移步到附近充电桩", Toast.LENGTH_SHORT);
|
|
|
493
|
// } else if (code.equals("40000")) {
|
|
|
494
|
// if (mCamera != null) {
|
|
|
495
|
// scanRestart();
|
|
|
496
|
// }
|
|
|
497
|
// ToastUtil.showToast(getApplicationContext(), "未插充电枪或该桩已离线", Toast.LENGTH_SHORT);
|
|
|
498
|
// } else if (code.equals("600")) {
|
|
|
499
|
// if (mCamera != null) {
|
|
|
500
|
// scanRestart();
|
|
|
501
|
// }
|
|
|
502
|
// ToastUtil.showToast(getApplicationContext(), "由于网络原因,您有一笔订单未结算,请稍候再试", Toast.LENGTH_SHORT);
|
|
|
503
|
// } else {
|
|
|
504
|
// if (mCamera != null) {
|
|
|
505
|
// scanRestart();
|
|
|
506
|
// }
|
|
|
507
|
// String error_message = JsonUtils.getKeyResult(response, "error_message");
|
|
|
508
|
// String urll = "http://123.57.6.131/zhannew/basic/web/index.php/log/write";
|
|
|
509
|
// OkHttpUtils.post()
|
|
|
510
|
// .url(urll)
|
|
|
511
|
// .addParams("url", url)
|
|
|
512
|
// .addParams("code", code)
|
|
|
513
|
// .addParams("message", error_message)
|
|
|
514
|
// .addParams("type", "android")
|
|
|
515
|
// .build()
|
|
|
516
|
// .execute(new StringCallback() {
|
|
|
517
|
// @Override
|
|
|
518
|
// public void onError(Call call, Exception e) {
|
|
|
519
|
//
|
|
|
520
|
// }
|
|
|
521
|
//
|
|
|
522
|
// @Override
|
|
|
523
|
// public void onResponse(String response) {
|
|
|
524
|
//
|
|
|
525
|
// }
|
|
|
526
|
// });
|
|
|
527
|
// ToastUtil.showToast(getApplicationContext(), error_message, Toast.LENGTH_SHORT);
|
|
|
528
|
// }
|
|
|
529
|
// }
|
|
|
530
|
// }
|
|
|
531
|
// });
|
|
|
532
|
// }
|
|
|
533
|
//
|
|
|
534
|
// private void checkoutInfo(final String zhuang_num) {
|
|
|
535
|
// long appTime1 = System.currentTimeMillis() / 1000;
|
|
|
536
|
// Log.i("appTime(long)---", appTime1 + "");
|
|
|
537
|
// long updatetime = appTime1 - MainMapActivity.cha - 3;
|
|
|
538
|
// Log.i("updatetime(long)---", updatetime + "");
|
|
|
539
|
// Log.i("cha---", MainMapActivity.cha + "");
|
|
|
540
|
// String token = String.valueOf(updatetime);
|
|
|
541
|
// final String url = MainApplication.url + "/zhannew/basic/web/index.php/xxapi/info" +
|
|
|
542
|
// "?stubId=" + zhuang_num + "&supplier=星星充电&timer=" + token + "&user_id=" + MainApplication.userId + "&ver=1.0&sign="
|
|
|
543
|
// + Md5Util.md5("stubId=" + zhuang_num + "&supplier=星星充电&timer=" + token + "&user_id=" + MainApplication.userId + "&key=661f9efdcb4f46fe7ab5f2e78a705a2a");
|
|
|
544
|
//
|
|
|
545
|
// Log.e("url", url);
|
|
|
546
|
// OkHttpUtils
|
|
|
547
|
// .get()
|
|
|
548
|
// .url(url)
|
|
|
549
|
// .build()
|
|
|
550
|
// .connTimeOut(20000)
|
|
|
551
|
// .readTimeOut(20000)
|
|
|
552
|
// .execute(new StringCallback() {
|
|
|
553
|
// @Override
|
|
|
554
|
// public void onError(Call call, Exception e) {
|
|
|
555
|
// Toast.makeText(getApplicationContext(), "网络不给力", Toast.LENGTH_SHORT).show();
|
|
|
556
|
// dialog.cancel();
|
|
|
557
|
// }
|
|
|
558
|
//
|
|
|
559
|
// @Override
|
|
|
560
|
// public void onResponse(String response) {
|
|
|
561
|
// Log.e("response====", response);
|
|
|
562
|
// String error_message = JsonUtils.getKeyResult(response, "error_message");
|
|
|
563
|
// String code = JsonUtils.getKeyResult(response, "code");
|
|
|
564
|
// dialog.cancel();
|
|
|
565
|
// if (code != null) {
|
|
|
566
|
// if (code.equals("104")) {
|
|
|
567
|
// String urll = "http://123.57.6.131/zhannew/basic/web/index.php/log/write";
|
|
|
568
|
// OkHttpUtils.post()
|
|
|
569
|
// .url(urll)
|
|
|
570
|
// .addParams("url", url)
|
|
|
571
|
// .addParams("code", code)
|
|
|
572
|
// .addParams("message", error_message)
|
|
|
573
|
// .addParams("type", "android")
|
|
|
574
|
// .build()
|
|
|
575
|
// .execute(new StringCallback() {
|
|
|
576
|
// @Override
|
|
|
577
|
// public void onError(Call call, Exception e) {
|
|
|
578
|
//
|
|
|
579
|
// }
|
|
|
580
|
//
|
|
|
581
|
// @Override
|
|
|
582
|
// public void onResponse(String response) {
|
|
|
583
|
//
|
|
|
584
|
// }
|
|
|
585
|
// });
|
|
|
586
|
// new AlertDialog(MyCaptureActivity.this).builder()
|
|
|
587
|
// .setMsg("您的余额不足1元,可能无法满\n足您此次充电")
|
|
|
588
|
// .setPositiveButton("去充值", new View.OnClickListener() {
|
|
|
589
|
// @Override
|
|
|
590
|
// public void onClick(View v) {
|
|
|
591
|
// startActivity(new Intent(getApplication(), AccountRechargeActivity.class));
|
|
|
592
|
// }
|
|
|
593
|
// }).setNegativeButton("取消", new View.OnClickListener() {
|
|
|
594
|
// @Override
|
|
|
595
|
// public void onClick(View v) {
|
|
|
596
|
// if (mCamera != null) {
|
|
|
597
|
// scanRestart();
|
|
|
598
|
// }
|
|
|
599
|
// }
|
|
|
600
|
// }).show();
|
|
|
601
|
// } else if (code.equals("106")) {
|
|
|
602
|
// if (mCamera != null) {
|
|
|
603
|
// scanRestart();
|
|
|
604
|
// }
|
|
|
605
|
// String urll = "http://123.57.6.131/zhannew/basic/web/index.php/log/write";
|
|
|
606
|
// OkHttpUtils.post()
|
|
|
607
|
// .url(urll)
|
|
|
608
|
// .addParams("url", url)
|
|
|
609
|
// .addParams("code", code)
|
|
|
610
|
// .addParams("message", error_message)
|
|
|
611
|
// .addParams("type", "android")
|
|
|
612
|
// .build()
|
|
|
613
|
// .execute(new StringCallback() {
|
|
|
614
|
// @Override
|
|
|
615
|
// public void onError(Call call, Exception e) {
|
|
|
616
|
//
|
|
|
617
|
// }
|
|
|
618
|
//
|
|
|
619
|
// @Override
|
|
|
620
|
// public void onResponse(String response) {
|
|
|
621
|
//
|
|
|
622
|
// }
|
|
|
623
|
// });
|
|
|
624
|
// ToastUtil.showToast(getApplicationContext(), "无此电桩,请重新扫码", Toast.LENGTH_SHORT);
|
|
|
625
|
// } else if (code.equals("301")) {
|
|
|
626
|
// if (mCamera != null) {
|
|
|
627
|
// scanRestart();
|
|
|
628
|
// }
|
|
|
629
|
// String urll = "http://123.57.6.131/zhannew/basic/web/index.php/log/write";
|
|
|
630
|
// OkHttpUtils.post()
|
|
|
631
|
// .url(urll)
|
|
|
632
|
// .addParams("url", url)
|
|
|
633
|
// .addParams("code", code)
|
|
|
634
|
// .addParams("message", error_message)
|
|
|
635
|
// .addParams("type", "android")
|
|
|
636
|
// .build()
|
|
|
637
|
// .execute(new StringCallback() {
|
|
|
638
|
// @Override
|
|
|
639
|
// public void onError(Call call, Exception e) {
|
|
|
640
|
//
|
|
|
641
|
// }
|
|
|
642
|
//
|
|
|
643
|
// @Override
|
|
|
644
|
// public void onResponse(String response) {
|
|
|
645
|
//
|
|
|
646
|
// }
|
|
|
647
|
// });
|
|
|
648
|
// ToastUtil.showToast(getApplicationContext(), "终端系统错误", Toast.LENGTH_SHORT);
|
|
|
649
|
// } else if (code.equals("200")) {
|
|
|
650
|
//// 00:空闲,01:充电中,02:故障,03:车位占用,04:维护中,
|
|
|
651
|
//// 05:离线,06:在建中,07:升级中,99:删除
|
|
|
652
|
//
|
|
|
653
|
// String data = JsonUtils.getKeyResult(response, "data");
|
|
|
654
|
// Log.e("data===", data);
|
|
|
655
|
// String status = JsonUtils.getKeyResult(data, "status");
|
|
|
656
|
// if (status.equals("00")) {
|
|
|
657
|
// stubGroupId = JsonUtils.getKeyResult(data, "stubGroupId");
|
|
|
658
|
// try {
|
|
|
659
|
// startCharging(zhuang_num);
|
|
|
660
|
// } catch (Exception e) {
|
|
|
661
|
// e.printStackTrace();
|
|
|
662
|
// }
|
|
|
663
|
//
|
|
|
664
|
//
|
|
|
665
|
// } else if (status.equals("01")) {
|
|
|
666
|
// new AlertDialog(MyCaptureActivity.this).builder()
|
|
|
667
|
// .setMsg("充电中")
|
|
|
668
|
// .setNegativeButton("确定", new View.OnClickListener() {
|
|
|
669
|
// @Override
|
|
|
670
|
// public void onClick(View v) {
|
|
|
671
|
// scanRestart();
|
|
|
672
|
//// startActivity(new Intent(getApplication(),ChargingStatusActivity.class));
|
|
|
673
|
// }
|
|
|
674
|
// }).show();
|
|
|
675
|
// } else if (status.equals("02")) {
|
|
|
676
|
// scanRestart();
|
|
|
677
|
// ToastUtil.showToast(getApplicationContext(), "故障", Toast.LENGTH_SHORT);
|
|
|
678
|
// } else if (status.equals("03")) {
|
|
|
679
|
// scanRestart();
|
|
|
680
|
// ToastUtil.showToast(getApplicationContext(), "车位占用", Toast.LENGTH_SHORT);
|
|
|
681
|
// } else if (status.equals("04")) {
|
|
|
682
|
// scanRestart();
|
|
|
683
|
// ToastUtil.showToast(getApplicationContext(), "维护中", Toast.LENGTH_SHORT);
|
|
|
684
|
// } else if (status.equals("05")) {
|
|
|
685
|
// scanRestart();
|
|
|
686
|
// ToastUtil.showToast(getApplicationContext(), "离线", Toast.LENGTH_SHORT);
|
|
|
687
|
// } else if (status.equals("06")) {
|
|
|
688
|
// scanRestart();
|
|
|
689
|
// ToastUtil.showToast(getApplicationContext(), "在建中", Toast.LENGTH_SHORT);
|
|
|
690
|
// } else if (status.equals("07")) {
|
|
|
691
|
// scanRestart();
|
|
|
692
|
// ToastUtil.showToast(getApplicationContext(), "升级中", Toast.LENGTH_SHORT);
|
|
|
693
|
// } else if (status.equals("99")) {
|
|
|
694
|
// scanRestart();
|
|
|
695
|
// ToastUtil.showToast(getApplicationContext(), "删除", Toast.LENGTH_SHORT);
|
|
|
696
|
// }
|
|
|
697
|
// } else if (code.equals("600")) {
|
|
|
698
|
// scanRestart();
|
|
|
699
|
// ToastUtil.showToast(getApplicationContext(), "由于网络原因,您有一笔订单未结算,请稍候再试", Toast.LENGTH_SHORT);
|
|
|
700
|
// } else {
|
|
|
701
|
// ToastUtil.showToast(getApplicationContext(), "无此电桩,请重新扫码", Toast.LENGTH_SHORT);
|
|
|
702
|
// scanRestart();
|
|
|
703
|
// }
|
|
|
704
|
// } else {
|
|
|
705
|
// ToastUtil.showToast(getApplicationContext(), "code为空", Toast.LENGTH_SHORT);
|
|
|
706
|
// }
|
|
|
707
|
// }
|
|
|
708
|
// });
|
|
|
709
|
// }
|
|
|
710
|
//
|
|
|
711
|
// private void sp() {
|
|
|
712
|
// SharedPreferences sharedPreferences = getApplication().getSharedPreferences("userInfo",
|
|
|
713
|
// Activity.MODE_PRIVATE);
|
|
|
714
|
// password = sharedPreferences.getString("password", "");
|
|
|
715
|
// }
|
|
|
716
|
//
|
|
|
717
|
// private void startCharging(final String zhuang_num) throws Exception {
|
|
|
718
|
// sp();
|
|
|
719
|
// dialog.show();
|
|
|
720
|
// long appTime1 = System.currentTimeMillis() / 1000;
|
|
|
721
|
// long updatetime = appTime1 - MainMapActivity.cha - 3;
|
|
|
722
|
// String token = String.valueOf(updatetime);
|
|
|
723
|
// String s = "password=" + DES3.encode(password) + "&stubGroupId=" + stubGroupId + "&stubId=" + zhuang_num + "&supplier=" + "星星充电&timer=" + token + "&user_id=" + MainApplication.userId + "&key=661f9efdcb4f46fe7ab5f2e78a705a2a";
|
|
|
724
|
// final String url = MainApplication.url + "/zhannew/basic/web/index.php/charge/start" +
|
|
|
725
|
// "?password=" + URLEncoder.encode(DES3.encode(password)) + "&stubGroupId=" + stubGroupId + "&stubId=" + zhuang_num + "&supplier=" + URLEncoder.encode("星星充电") + "&timer=" + token + "&user_id=" + MainApplication.userId + "&ver=1.0&sign="
|
|
|
726
|
// + Md5Util.md5(s);
|
|
|
727
|
// Log.e("urlstart===", URLEncoder.encode(url));
|
|
|
728
|
// OkHttpUtils.get()
|
|
|
729
|
// .url(url)
|
|
|
730
|
// .build()
|
|
|
731
|
// .connTimeOut(10000)
|
|
|
732
|
// .readTimeOut(10000)
|
|
|
733
|
// .execute(new StringCallback() {
|
|
|
734
|
// @Override
|
|
|
735
|
// public void onError(Call call, Exception e) {
|
|
|
736
|
// Toast.makeText(getApplicationContext(), "网络不给力", Toast.LENGTH_SHORT).show();
|
|
|
737
|
// dialog.cancel();
|
|
|
738
|
// }
|
|
|
739
|
//
|
|
|
740
|
// @Override
|
|
|
741
|
// public void onResponse(String response) {
|
|
|
742
|
// Log.e("start===", response);
|
|
|
743
|
// dialog.cancel();
|
|
|
744
|
// String code = JsonUtils.getKeyResult(response, "code");
|
|
|
745
|
// if (code != null) {
|
|
|
746
|
// if (code.equals("400")) {
|
|
|
747
|
// String error_message = JsonUtils.getKeyResult(response, "error_message");
|
|
|
748
|
// String urll = "http://123.57.6.131/zhannew/basic/web/index.php/log/write";
|
|
|
749
|
// OkHttpUtils.post()
|
|
|
750
|
// .url(urll)
|
|
|
751
|
// .addParams("url", url)
|
|
|
752
|
// .addParams("code", code)
|
|
|
753
|
// .addParams("message", error_message)
|
|
|
754
|
// .addParams("type", "android")
|
|
|
755
|
// .build()
|
|
|
756
|
// .execute(new StringCallback() {
|
|
|
757
|
// @Override
|
|
|
758
|
// public void onError(Call call, Exception e) {
|
|
|
759
|
//
|
|
|
760
|
// }
|
|
|
761
|
//
|
|
|
762
|
// @Override
|
|
|
763
|
// public void onResponse(String response) {
|
|
|
764
|
//
|
|
|
765
|
// }
|
|
|
766
|
// });
|
|
|
767
|
// new AlertDialog(MyCaptureActivity.this).builder()
|
|
|
768
|
// .setMsg(error_message)
|
|
|
769
|
// .setNegativeButton("确定", new View.OnClickListener() {
|
|
|
770
|
// @Override
|
|
|
771
|
// public void onClick(View v) {
|
|
|
772
|
// if (mCamera != null) {
|
|
|
773
|
// scanRestart();
|
|
|
774
|
// }
|
|
|
775
|
//// startActivity(new Intent(getApplication(),ChargingStatusActivity.class));
|
|
|
776
|
//
|
|
|
777
|
//// startCharging();
|
|
|
778
|
// }
|
|
|
779
|
// }).show();
|
|
|
780
|
//
|
|
|
781
|
//
|
|
|
782
|
// } else if (code.equals("200")) {
|
|
|
783
|
// Intent intent = new Intent(getApplication(), ChargingStatusActivity.class);
|
|
|
784
|
//// intent.putExtra("stubId",zhuang_num);
|
|
|
785
|
//// intent.putExtra("stubGroupId",stubGroupId);
|
|
|
786
|
// intent.putExtra("type", "xx");
|
|
|
787
|
// startActivity(intent);
|
|
|
788
|
// if (mCamera != null) {
|
|
|
789
|
// scanRestart();
|
|
|
790
|
// }
|
|
|
791
|
// finish();
|
|
|
792
|
// } else {
|
|
|
793
|
// if (mCamera != null) {
|
|
|
794
|
// scanRestart();
|
|
|
795
|
// }
|
|
|
796
|
// String error_message = JsonUtils.getKeyResult(response, "error_message");
|
|
|
797
|
// String urll = "http://123.57.6.131/zhannew/basic/web/index.php/log/write";
|
|
|
798
|
// OkHttpUtils.post()
|
|
|
799
|
// .url(urll)
|
|
|
800
|
// .addParams("url", url)
|
|
|
801
|
// .addParams("code", code)
|
|
|
802
|
// .addParams("message", error_message)
|
|
|
803
|
// .addParams("type", "android")
|
|
|
804
|
// .build()
|
|
|
805
|
// .execute(new StringCallback() {
|
|
|
806
|
// @Override
|
|
|
807
|
// public void onError(Call call, Exception e) {
|
|
|
808
|
//
|
|
|
809
|
// }
|
|
|
810
|
//
|
|
|
811
|
// @Override
|
|
|
812
|
// public void onResponse(String response) {
|
|
|
813
|
//
|
|
|
814
|
// }
|
|
|
815
|
// });
|
|
|
816
|
//
|
|
|
817
|
// ToastUtil.showToast(getApplicationContext(), error_message, Toast.LENGTH_SHORT);
|
|
|
818
|
// }
|
|
|
819
|
// }
|
|
|
820
|
// }
|
|
|
821
|
// });
|
|
|
822
|
// }
|
|
|
823
|
//
|
|
|
824
|
// private void checkTlD(final String chargingCode) {
|
|
|
825
|
// final String url = MainApplication.url + "/zhannew/basic/web/index.php/special/info?pile_id=" + chargingCode + "&user_id=" + MainApplication.userId;
|
|
|
826
|
// Log.e("checkTlD_url===", url);
|
|
|
827
|
// dialog.show();
|
|
|
828
|
// OkHttpUtils.get().url(url).build().execute(new StringCallback() {
|
|
|
829
|
// @Override
|
|
|
830
|
// public void onError(Call call, Exception e) {
|
|
|
831
|
//
|
|
|
832
|
// }
|
|
|
833
|
//
|
|
|
834
|
// @Override
|
|
|
835
|
// public void onResponse(String response) {
|
|
|
836
|
// dialog.cancel();
|
|
|
837
|
// Log.e("checkTlD_response", response);
|
|
|
838
|
// String code = JsonUtils.getKeyResult(response, "code");
|
|
|
839
|
// if (code.equals("200")) {
|
|
|
840
|
// String group_id = JsonUtils.getKeyResult(response, "group_id");
|
|
|
841
|
// String eletype = JsonUtils.getKeyResult(response, "eletype");
|
|
|
842
|
// Intent intent = new Intent(getApplicationContext(), TLDLoadingActivity.class);
|
|
|
843
|
// intent.putExtra("eletype", eletype);
|
|
|
844
|
// intent.putExtra("chargingCode", chargingCode);
|
|
|
845
|
// intent.putExtra("group_id", group_id);
|
|
|
846
|
// startActivity(intent);
|
|
|
847
|
// finish();
|
|
|
848
|
//
|
|
|
849
|
//// startTLD(chargingCode,group_id);
|
|
|
850
|
// } else {
|
|
|
851
|
// String error_messge = JsonUtils.getKeyResult(response, "error_message");
|
|
|
852
|
// Toast.makeText(getApplicationContext(), error_messge, Toast.LENGTH_SHORT).show();
|
|
|
853
|
// new Handler().postDelayed(new Runnable() {
|
|
|
854
|
// public void run() {
|
|
|
855
|
// if (mCamera != null) {
|
|
|
856
|
// scanRestart();
|
|
|
857
|
// }
|
|
|
858
|
// }
|
|
|
859
|
// }, 1500);
|
|
|
860
|
// }
|
|
|
861
|
// }
|
|
|
862
|
// });
|
|
|
863
|
// }
|
|
|
864
|
//
|
|
|
865
|
// private void getChargingPile(final String result) {
|
|
|
866
|
// String url = MainApplication.url + "/zhannew/basic/web/index.php/interface/info?flag=1&user_id=" + MainApplication.userId + "&url=" + result;
|
|
|
867
|
// Log.e(TAG, "getChargingPile: url=" + url);
|
|
|
868
|
// OkHttpUtils.get().url(url).build().execute(new StringCallback() {
|
|
|
869
|
// @Override
|
|
|
870
|
// public void onError(Call call, Exception e) {
|
|
|
871
|
//
|
|
|
872
|
// }
|
|
|
873
|
//
|
|
|
874
|
// @Override
|
|
|
875
|
// public void onResponse(String response) {
|
|
|
876
|
// Log.e(TAG, "onResponse: getChargingPile11=" + response);
|
|
|
877
|
// String code = JsonUtils.getKeyResult(response, "code");
|
|
|
878
|
// if (code.equals("200")) {
|
|
|
879
|
// String group_id = JsonUtils.getKeyResult(response, "group_id");
|
|
|
880
|
// String eletype = JsonUtils.getKeyResult(response, "eletype");
|
|
|
881
|
// String type = JsonUtils.getKeyResult(response, "type");
|
|
|
882
|
// String pile_code = JsonUtils.getKeyResult(response, "pile_code");
|
|
|
883
|
// if (type.equals("jd")) {
|
|
|
884
|
// startHssy(pile_code, group_id, type);
|
|
|
885
|
// } else {
|
|
|
886
|
// Intent intent = new Intent(getApplicationContext(), TLDLoadingActivity.class);
|
|
|
887
|
// intent.putExtra("type", type);
|
|
|
888
|
// intent.putExtra("eletype", eletype);
|
|
|
889
|
// intent.putExtra("chargingCode", pile_code);
|
|
|
890
|
// intent.putExtra("group_id", group_id);
|
|
|
891
|
// startActivity(intent);
|
|
|
892
|
// finish();
|
|
|
893
|
// }
|
|
|
894
|
//
|
|
|
895
|
// } else {
|
|
|
896
|
// String error_message = JsonUtils.getKeyResult(response, "error_message");
|
|
|
897
|
// ToastUtil.showToast(getApplicationContext(), error_message, Toast.LENGTH_SHORT);
|
|
|
898
|
// new Handler().postDelayed(new Runnable() {
|
|
|
899
|
// public void run() {
|
|
|
900
|
// if (mCamera != null) {
|
|
|
901
|
// scanRestart();
|
|
|
902
|
// }
|
|
|
903
|
//
|
|
|
904
|
// }
|
|
|
905
|
// }, 1500);
|
|
|
906
|
// }
|
|
|
907
|
// }
|
|
|
908
|
// });
|
|
|
909
|
// }
|
|
|
910
|
//
|
|
|
911
|
// private void startHssy(String pile_code, String group_id, String type) {
|
|
|
912
|
// long appTime1 = System.currentTimeMillis() / 1000;
|
|
|
913
|
// long updatetime = appTime1 - MainMapActivity.cha - 3;
|
|
|
914
|
// String token = String.valueOf(updatetime);
|
|
|
915
|
// String s = "group_id=" + group_id + "&password=" + MainApplication.userPassword + "&pile_code=" + pile_code + "&timer=" + token + "&type=" + type + "&user_id=" + MainApplication.userId + "&key=661f9efdcb4f46fe7ab5f2e78a705a2a";
|
|
|
916
|
// String url = MainApplication.url + "/zhannew/basic/web/index.php/interface/start_v2?" +
|
|
|
917
|
// "ver=1.0&type=" + type + "&timer=" + token + "&user_id=" + MainApplication.userId + "&pile_code="
|
|
|
918
|
// + pile_code + "&group_id=" + group_id + "&password=" + MainApplication.userPassword + "&sign=" + Md5Util.md5(s);
|
|
|
919
|
// Log.e(TAG, "startHssy: url=" + url);
|
|
|
920
|
// OkHttpUtils.get().url(url).build().execute(new StringCallback() {
|
|
|
921
|
// @Override
|
|
|
922
|
// public void onError(Call call, Exception e) {
|
|
|
923
|
//
|
|
|
924
|
// }
|
|
|
925
|
//
|
|
|
926
|
// @Override
|
|
|
927
|
// public void onResponse(String response) {
|
|
|
928
|
// Log.e(TAG, "onResponse: startHssy=" + response);
|
|
|
929
|
// String code = JsonUtils.getKeyResult(response, "code");
|
|
|
930
|
// if (code.equals("200")) {
|
|
|
931
|
// MainApplication.isAppStart = true;
|
|
|
932
|
// ProfileManager.getInstance().setAppStart(getApplicationContext(), MainApplication.isAppStart);
|
|
|
933
|
// startActivity(new Intent(getApplicationContext(), ChargingStatusActivity.class));
|
|
|
934
|
// finish();
|
|
|
935
|
// } else {
|
|
|
936
|
// String error_message = JsonUtils.getKeyResult(response, "error_message");
|
|
|
937
|
// ToastUtil.showToast(getApplicationContext(), error_message, Toast.LENGTH_SHORT);
|
|
|
938
|
// new Handler().postDelayed(new Runnable() {
|
|
|
939
|
// public void run() {
|
|
|
940
|
// if (mCamera != null) {
|
|
|
941
|
// scanRestart();
|
|
|
942
|
// }
|
|
|
943
|
// }
|
|
|
944
|
// }, 1500);
|
|
|
945
|
// }
|
|
|
946
|
// }
|
|
|
947
|
// });
|
|
|
948
|
// }
|
|
|
949
|
//
|
|
|
950
|
//
|
|
|
951
|
//}
|
|
|
@ -5,6 +5,7 @@ import android.content.Intent;
|
|
5
|
5
|
import android.support.v4.view.PagerAdapter;
|
|
6
|
6
|
import android.support.v4.view.ViewPager;
|
|
7
|
7
|
import android.text.TextUtils;
|
|
|
8
|
import android.util.Log;
|
|
8
|
9
|
import android.view.LayoutInflater;
|
|
9
|
10
|
import android.view.MotionEvent;
|
|
10
|
11
|
import android.view.View;
|
|
|
@ -172,33 +173,15 @@ public class SvVideoShowView implements View.OnClickListener {
|
|
172
|
173
|
} else {
|
|
173
|
174
|
// sv_show_like_img not like
|
|
174
|
175
|
}
|
|
175
|
|
sv_show_tvcon.post(
|
|
176
|
|
new Runnable() {
|
|
177
|
|
@Override
|
|
178
|
|
public void run() {
|
|
179
|
|
int lineCount = sv_show_tvcon.getLineCount();
|
|
180
|
|
if (lineCount > 3) {
|
|
181
|
|
isMaxline = true;
|
|
182
|
|
sv_show_tvcon.setMaxLines(3);
|
|
183
|
|
sv_show_tvcon.setEllipsize(TextUtils.TruncateAt.END);
|
|
184
|
|
sv_show_tvcon_more.setVisibility(View.VISIBLE);
|
|
185
|
|
} else {
|
|
186
|
|
if (!isMaxline) {
|
|
187
|
|
sv_show_tvcon.setMaxLines(lineCount);
|
|
188
|
|
sv_show_tvcon_more.setVisibility(View.GONE);
|
|
189
|
|
}
|
|
190
|
|
}
|
|
191
|
|
}
|
|
192
|
|
}
|
|
193
|
|
);
|
|
194
|
|
// if (sv_show_tvcon.getLineCount() > 3) {
|
|
195
|
|
// sv_show_tvcon_more.setVisibility(View.VISIBLE);
|
|
196
|
|
// } else {
|
|
197
|
|
// sv_show_tvcon_more.setVisibility(View.GONE);
|
|
198
|
|
// }
|
|
|
176
|
int length = sv_show_tvcon.length();
|
|
|
177
|
Log.e("length", "setData: length: "+length);
|
|
|
178
|
if (sv_show_tvcon.getLineCount() >= 3 && sv_show_tvcon.getText().length()> 100) {
|
|
|
179
|
sv_show_tvcon_more.setVisibility(View.VISIBLE);
|
|
|
180
|
} else {
|
|
|
181
|
sv_show_tvcon_more.setVisibility(View.GONE);
|
|
|
182
|
}
|
|
199
|
183
|
}
|
|
200
|
184
|
|
|
201
|
|
boolean isMaxline = false;
|
|
202
|
185
|
|
|
203
|
186
|
private void likeRequest(final int likeFlag) {
|
|
204
|
187
|
String url = MainApplication.urlNew + "/article/like";
|
|
|
@ -52,8 +52,9 @@ public class VideoPubilshDialog extends Dialog implements View.OnClickListener {
|
|
52
|
52
|
|
|
53
|
53
|
|
|
54
|
54
|
videoPublishTopicCon.setText(talkRecommendBean.topicName);
|
|
55
|
|
videoPublishCon.setText(talkRecommendBean.title);
|
|
56
|
|
|
|
|
55
|
if(!TextUtils.isEmpty(talkRecommendBean.title)) {
|
|
|
56
|
videoPublishCon.setText(talkRecommendBean.title);
|
|
|
57
|
}
|
|
57
|
58
|
if (TextUtils.isEmpty(talkRecommendBean.headImgUrl)) {
|
|
58
|
59
|
Picasso.with(context)
|
|
59
|
60
|
.load(R.drawable.icon_face2_0)
|
|
|
@ -22,7 +22,6 @@
|
|
22
|
22
|
android:layout_marginStart="15dp"
|
|
23
|
23
|
android:layout_marginTop="15dp"
|
|
24
|
24
|
android:layout_marginEnd="40dp"
|
|
25
|
|
android:layout_marginBottom="10dp"
|
|
26
|
25
|
android:background="@drawable/bg_topic"
|
|
27
|
26
|
android:gravity="center_vertical"
|
|
28
|
27
|
android:minHeight="30dp">
|
|
|
@ -50,13 +49,14 @@
|
|
50
|
49
|
android:layout_height="20dp"
|
|
51
|
50
|
android:layout_below="@+id/video_publish_topic"
|
|
52
|
51
|
android:layout_marginStart="15dp"
|
|
|
52
|
android:layout_marginTop="10dp"
|
|
53
|
53
|
android:gravity="center_vertical"
|
|
54
|
54
|
android:orientation="horizontal">
|
|
55
|
55
|
|
|
56
|
56
|
<ImageView
|
|
57
|
57
|
android:id="@+id/video_publish_user_avatar"
|
|
58
|
58
|
android:layout_width="20dp"
|
|
59
|
|
android:layout_height="20dp" />
|
|
|
59
|
android:layout_height="20dp" />
|
|
60
|
60
|
|
|
61
|
61
|
<TextView
|
|
62
|
62
|
android:id="@+id/video_publish_user_name"
|
|
|
@ -123,6 +123,8 @@
|
|
123
|
123
|
android:layout_marginRight="39dp"
|
|
124
|
124
|
android:layout_marginBottom="23dp"
|
|
125
|
125
|
android:textColor="#E2E2E2"
|
|
|
126
|
android:ellipsize="end"
|
|
|
127
|
android:maxLines="3"
|
|
126
|
128
|
android:textSize="14sp" />
|
|
127
|
129
|
|
|
128
|
130
|
<ImageView
|