Compare commits
5 Commits
timestamp-
...
timestamp-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9b761b35ce | ||
|
|
5206f8781e | ||
|
|
2c0a5bfe65 | ||
|
|
49bce0f773 | ||
|
|
07c6778212 |
@@ -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
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user