Browse Source

232324454

调味吧台
fyf 1 year ago
parent
commit
248b17be23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/src/main/java/com/example/bpa/helper/UpdateManager.java

+ 1
- 1
app/src/main/java/com/example/bpa/helper/UpdateManager.java View File

@@ -338,7 +338,7 @@ public class UpdateManager {
title_date.setText("发布时间:" + DataHelper.longToString(Long.parseLong(newVersionInfo.releaseDate), "yyyy-MM-dd HH:mm:ss"));
//title_size.setText("大小:"+newVersionInfo.getString("versionSize"));
//提示内容按";"进行整合,这里拆分到数组中
String desc = newVersionInfo.description.replace(";", "\n");
String desc =newVersionInfo.description==null?"暂无描述":( newVersionInfo.description.replace(";", "\n"));
versionDesc.setText(desc);
Button positiveButton = (Button) win.findViewById(R.id.PositiveButton);
Button negativeButton = (Button) win.findViewById(R.id.NegativeButton);


Loading…
Cancel
Save