|
|
@@ -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); |
|
|
|