Compare commits

..

5 Commits

Author SHA1 Message Date
ZhanGSKen
9b761b35ce <timestamp>APK 15.0.9 release Publish. 2025-05-07 10:56:24 +08:00
ZhanGSKen
5206f8781e 初始数据 BugFix. 2025-05-07 10:55:46 +08:00
ZhanGSKen
2c0a5bfe65 更新默认时间戳显示格式 2025-05-07 10:51:48 +08:00
ZhanGSKen
49bce0f773 <timestamp>APK 15.0.8 release Publish. 2025-05-07 10:48:11 +08:00
ZhanGSKen
07c6778212 优化UI显示 2025-05-07 10:47:19 +08:00
5 changed files with 16 additions and 16 deletions

View File

@@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle
#Wed May 07 02:58:13 HKT 2025
stageCount=8
#Wed May 07 10:56:24 HKT 2025
stageCount=10
libraryProject=
baseVersion=15.0
publishVersion=15.0.7
publishVersion=15.0.9
buildCount=0
baseBetaVersion=15.0.8
baseBetaVersion=15.0.10

View File

@@ -25,8 +25,8 @@ public class AppConfigsModel extends BaseBean {
public AppConfigsModel() {
this.isEnableService = false;
this.timeStampFormatString = "yyyy-MM-dd HH:mm:ss";
this.timeStampCopyFormatString = "yyyy_MM_dd-HH_mm_ss";
this.timeStampFormatString = "yyyy-MM-dd HH:mm:ss SSS";
this.timeStampCopyFormatString = "yyyy_MM_dd-HH_mm_ss-SSS";
}
public void setTimeStampCopyFormatString(String timeStampCopyFormatString) {

View File

@@ -22,12 +22,12 @@ public class AppConfigsUtil {
AppConfigsUtil(Context context) {
this.mContext = context;
loadAppConfigs();
}
public synchronized static AppConfigsUtil getInstance(Context context){
if(_AppConfigsUtil == null) {
_AppConfigsUtil = new AppConfigsUtil(context);
_AppConfigsUtil.loadAppConfigs();
}
return _AppConfigsUtil;
}
@@ -42,8 +42,8 @@ public class AppConfigsUtil {
if (appConfigsModel != null) {
mAppConfigsModel = appConfigsModel;
} else {
saveAppConfigs(new AppConfigsModel());
_AppConfigsUtil = this;
mAppConfigsModel = new AppConfigsModel();
saveAppConfigs(mAppConfigsModel);
}
return mAppConfigsModel;
}

View File

@@ -28,21 +28,21 @@
<Switch
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="启用通知栏计时器"
android:text="启用时间戳常驻通知栏"
android:id="@+id/activitymainSwitch1"
android:onClick="onSetMainServiceStatus"/>
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Show Format :"
android:text="Show Format Preview:"
android:paddingRight="10dp"/>
<TextView
@@ -69,7 +69,7 @@
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ApplySave"
android:text="ApplyShow"
android:id="@+id/btn_saveformatstring"
android:textAllCaps="false"
android:onClick="onSaveFormatString"/>
@@ -77,14 +77,14 @@
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Copy Format :"
android:text="Copy Format Preview:"
android:paddingRight="10dp"/>
<TextView

View File

@@ -13,7 +13,7 @@
android:layout_height="wrap_content"
android:text="Text"
android:textColor="#000000"
android:textSize="18sp"
android:textSize="14sp"
android:layout_weight="1.0"/>
<Button