|
@@ -0,0 +1,150 @@
|
|
|
+package com.hw.nativeapp.ui.activity;
|
|
|
+
|
|
|
+import android.content.pm.PackageInfo;
|
|
|
+import android.content.pm.PackageManager;
|
|
|
+import android.os.Bundle;
|
|
|
+import android.view.View;
|
|
|
+import android.widget.ImageView;
|
|
|
+import android.widget.LinearLayout;
|
|
|
+import android.widget.TextView;
|
|
|
+
|
|
|
+import com.blankj.utilcode.util.SPUtils;
|
|
|
+import com.blankj.utilcode.util.ToastUtils;
|
|
|
+import com.hw.nativeapp.BuildConfig;
|
|
|
+import com.hw.nativeapp.MApplication;
|
|
|
+import com.hw.nativeapp.R;
|
|
|
+import com.hw.nativeapp.config.Contents;
|
|
|
+import com.hw.nativeapp.httpnet.ErrorConsumer;
|
|
|
+import com.hw.nativeapp.httpnet.ResponseConsumer;
|
|
|
+import com.hw.nativeapp.httpnet.entity.UpdateVerAskBean;
|
|
|
+import com.hw.nativeapp.httpnet.entity.UpdateVerReqBean;
|
|
|
+import com.hw.nativeapp.update.UpdateHandler;
|
|
|
+import com.hw.nativeapp.utils.ActivityUtils;
|
|
|
+import com.hw.nativeapp.utils.RxUtil;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+import butterknife.BindView;
|
|
|
+import butterknife.OnClick;
|
|
|
+import cn.yhq.dialog.core.DialogBuilder;
|
|
|
+import cn.yhq.dialog.core.IDialog;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 设置页面
|
|
|
+ * SettingActivity
|
|
|
+ *
|
|
|
+ * @author Geh
|
|
|
+ * @Admonish This is the ancestral code from Geh, please check!
|
|
|
+ * @time 2021/6/30 22:49
|
|
|
+ */
|
|
|
+public class SettingActivity extends BaseActivity {
|
|
|
+
|
|
|
+
|
|
|
+ @BindView(R.id.tx_appversion)
|
|
|
+ TextView txAppversion;
|
|
|
+ @BindView(R.id.tx_serial)
|
|
|
+ TextView txSerial;
|
|
|
+ @BindView(R.id.tx_projectName)
|
|
|
+ TextView projectName;
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected void onCreate(Bundle savedInstanceState) {
|
|
|
+ super.onCreate(savedInstanceState);
|
|
|
+ setContentView(R.layout.activity_setting);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void initView() {
|
|
|
+ try {
|
|
|
+ PackageManager manager = this.getPackageManager();
|
|
|
+ PackageInfo packageInfo = manager.getPackageInfo(this.getPackageName(), 0);
|
|
|
+ txAppversion.setText(packageInfo.versionName + "." + packageInfo.versionCode);
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ projectName.setText("(" + BuildConfig.prjectName + ")");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @OnClick({ R.id.btn_update})
|
|
|
+ public void onClick(View view) {
|
|
|
+ switch (view.getId()) {
|
|
|
+ case R.id.btn_update:
|
|
|
+ update();
|
|
|
+ break;
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private void update(){
|
|
|
+ try {
|
|
|
+ UpdateVerReqBean bean = new UpdateVerReqBean();
|
|
|
+ bean.appKeyId = Contents.APPID;
|
|
|
+ PackageManager manager = this.getPackageManager();
|
|
|
+ PackageInfo packageInfo = manager.getPackageInfo(this.getPackageName(), 0);
|
|
|
+ bean.versionName = packageInfo.versionName;
|
|
|
+ bean.versionCode = packageInfo.versionCode;
|
|
|
+ MApplication.getApiService().version(bean,System.currentTimeMillis()/1000)
|
|
|
+ .compose(RxUtil.applyObservableAsync())
|
|
|
+ .subscribe(new ResponseConsumer<UpdateVerAskBean>() {
|
|
|
+ @Override
|
|
|
+ public void onSuccess(UpdateVerAskBean data) {
|
|
|
+ if (!data.isUpload){
|
|
|
+ ToastUtils.showLong("当前为最新版本");
|
|
|
+ }else {
|
|
|
+ showUpdate(data,packageInfo);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },new ErrorConsumer());
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ private void showUpdate(UpdateVerAskBean bean,PackageInfo packageInfo){
|
|
|
+ String note = "版本:" + packageInfo.versionName + "." + packageInfo.versionCode + "->" +
|
|
|
+ bean.versionName + "." + bean.versionCode + "\n" +
|
|
|
+ "版本描述:" + bean.note;
|
|
|
+
|
|
|
+ DialogBuilder.alertDialog(this).setMessage(note)
|
|
|
+ .setOnPositiveButtonClickListener((dialog, which) ->
|
|
|
+ startDownload(bean.downloadUrl,bean.fileSize))
|
|
|
+ .create().show();
|
|
|
+ }
|
|
|
+
|
|
|
+ private void startDownload(String downUrl, Integer fileSize){
|
|
|
+
|
|
|
+ DialogBuilder.ProgressHandler progressHandler =
|
|
|
+ new DialogBuilder.ProgressHandler();
|
|
|
+
|
|
|
+ IDialog dialogBuilder = DialogBuilder.progressDialog(this).progressHandler(progressHandler).show();
|
|
|
+
|
|
|
+ UpdateHandler updateHandler = new UpdateHandler(SettingActivity.this,downUrl);
|
|
|
+ updateHandler.setOnListener(new UpdateHandler.OnDownloadListener() {
|
|
|
+ @Override
|
|
|
+ public void complate() {
|
|
|
+ dialogBuilder.dismiss();
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void progress(int soFarBytes, int totalBytes) {
|
|
|
+ if (totalBytes <= 0){
|
|
|
+ totalBytes = fileSize;
|
|
|
+ }
|
|
|
+ BigDecimal a = BigDecimal.valueOf(soFarBytes);
|
|
|
+ BigDecimal b = BigDecimal.valueOf(totalBytes);
|
|
|
+
|
|
|
+ int pprogress = a.divide(b,2,BigDecimal.ROUND_HALF_UP)
|
|
|
+ .multiply(BigDecimal.valueOf(100))
|
|
|
+ .intValue();
|
|
|
+ progressHandler.setProgress(pprogress);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ updateHandler.start();
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+}
|