删除了"未知"默认数据
This commit is contained in:
@@ -14,7 +14,7 @@ public class MarkerActivitiesScope implements Serializable {
|
||||
|
||||
public String getContent() {
|
||||
if (TextUtils.isEmpty(content)) {
|
||||
return "未知";
|
||||
return "";
|
||||
}
|
||||
return content;
|
||||
}
|
||||
|
||||
@@ -66,7 +66,7 @@ public class MarkerDynamicData implements Serializable {
|
||||
|
||||
public String getMediaName() {
|
||||
if (TextUtils.isEmpty(mediaName)) {
|
||||
return "未知";
|
||||
return "";
|
||||
}
|
||||
return mediaName;
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ public class MarkerExploreWay implements Serializable {
|
||||
|
||||
public String getAddr() {
|
||||
if (TextUtils.isEmpty(addr)) {
|
||||
return "未知";
|
||||
return "";
|
||||
}
|
||||
return addr;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ public class MarkerLocation implements Serializable {
|
||||
|
||||
public String getAddress() {
|
||||
if (TextUtils.isEmpty(address)) {
|
||||
return "未知";
|
||||
return "";
|
||||
}
|
||||
return address;
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ public class MarkerOnlineTag implements Serializable {
|
||||
|
||||
public String getContent() {
|
||||
if (TextUtils.isEmpty(content)) {
|
||||
return "未知";
|
||||
return "";
|
||||
}
|
||||
return content;
|
||||
}
|
||||
|
||||
@@ -68,7 +68,7 @@ public class MarkerShareMusic implements Serializable {
|
||||
|
||||
public String getMediaName() {
|
||||
if (TextUtils.isEmpty(mediaName)) {
|
||||
return "未知";
|
||||
return "";
|
||||
}
|
||||
return mediaName;
|
||||
}
|
||||
|
||||
@@ -54,7 +54,7 @@ public class MarkerShowEntity {
|
||||
|
||||
public String getTextContent() {
|
||||
if (TextUtils.isEmpty(textContent)) {
|
||||
return "未知";
|
||||
return "";
|
||||
}
|
||||
return textContent;
|
||||
}
|
||||
|
||||
@@ -32,7 +32,7 @@ public class MarkerUserInfo implements Serializable {
|
||||
//1990
|
||||
char ageChar = ageChars[2];
|
||||
|
||||
String ageString = "未知";
|
||||
String ageString = "未设置";
|
||||
|
||||
switch (ageChar) {
|
||||
case '0':
|
||||
|
||||
Reference in New Issue
Block a user