更新 UploadNotificationResponse 数据模型,修改 received 字段类型为 boolean;更新 item_user.xml 布局文件,添加文本颜色属性;更新 IDE 配置文件。
This commit is contained in:
3
.idea/misc.xml
generated
3
.idea/misc.xml
generated
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" project-jdk-name="jbr-21" project-jdk-type="JavaSDK">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="jbr-21" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/build/classes" />
|
||||
</component>
|
||||
<component name="ProjectType">
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -10,7 +10,7 @@ package com.miraclegarden.smsmessage.model;
|
||||
*/
|
||||
public class UploadNotificationResponse {
|
||||
private boolean ok;
|
||||
private int received;
|
||||
private boolean received;
|
||||
private String id;
|
||||
private String processingStatus;
|
||||
private String emailSyncRecordId;
|
||||
@@ -25,11 +25,11 @@ public class UploadNotificationResponse {
|
||||
this.ok = ok;
|
||||
}
|
||||
|
||||
public int getReceived() {
|
||||
public boolean isReceived() {
|
||||
return received;
|
||||
}
|
||||
|
||||
public void setReceived(int received) {
|
||||
public void setReceived(boolean received) {
|
||||
this.received = received;
|
||||
}
|
||||
|
||||
|
||||
@@ -38,6 +38,7 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="16sp"
|
||||
android:text="111111"
|
||||
android:textColor="#333333"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<TextView
|
||||
|
||||
Reference in New Issue
Block a user