clone https://gitea.winboll.cc/Studio/WinBoLL_Bck20251205_175044_440.git and fix build.gradle file maven key settings.
This commit is contained in:
10
regexputils/src/main/res/values/colors.xml
Normal file
10
regexputils/src/main/res/values/colors.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="colorPrimary">#3F51B5</color>
|
||||
<color name="colorPrimaryDark">#303F9F</color>
|
||||
<color name="colorAccent">#FF5771FF</color>
|
||||
<color name="color_2C2C2C">#2C2C2C</color>
|
||||
<color name="color_4C4E55">#4C4E55</color>
|
||||
<color name="black">#FF000000</color>
|
||||
<color name="white">#FFFFFFFF</color>
|
||||
</resources>
|
||||
16
regexputils/src/main/res/values/strings.xml
Normal file
16
regexputils/src/main/res/values/strings.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">RegExpUtils</string>
|
||||
<string name="tv_pattern">Pattern</string>
|
||||
<string name="tv_rewrite">Rewrite</string>
|
||||
<string name="tv_matchtext">MatchText</string>
|
||||
<string name="tv_onlinehelp">OnlineHelp</string>
|
||||
<string name="sz_patternresult">PatternResult</string>
|
||||
<string name="sz_rewriteresult">RewriteResult</string>
|
||||
<string name="sz_isnull">is null.</string>
|
||||
<string name="sz_nomatcherfind">No matcher find.</string>
|
||||
<string name="sz_start">Start</string>
|
||||
<string name="sz_end">End</string>
|
||||
<string name="sz_Source">https://toscode.gitee.com/zhangsken/RegExpUtils</string>
|
||||
<string name="sz_defaultonlinehelp">https://tool.oschina.net/uploads/apidocs/jquery/regexp.html</string>
|
||||
</resources>
|
||||
41
regexputils/src/main/res/values/styles.xml
Normal file
41
regexputils/src/main/res/values/styles.xml
Normal file
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<!-- Base application theme. -->
|
||||
<style name="AppTheme" parent="android:Theme.Material.Light.DarkActionBar">
|
||||
<!-- Customize your theme here. -->
|
||||
<item name="android:colorPrimary">@color/colorPrimary</item>
|
||||
<item name="android:colorPrimaryDark">@color/colorPrimaryDark</item>
|
||||
<item name="android:colorAccent">@color/colorAccent</item>
|
||||
</style>
|
||||
<!--popMenu的Style-->
|
||||
<style name="customPopMenuStyle" >
|
||||
<item name="android:itemBackground">@color/color_2C2C2C</item>
|
||||
<item name="android:dropDownListViewStyle">@style/popmenuDivier</item>
|
||||
<item name="android:textAppearanceSmallPopupMenu">@style/popmeuText</item>
|
||||
<item name="android:textAppearanceLargePopupMenu">@style/popmeuText</item>
|
||||
</style>
|
||||
<!-- popMenu的背景色-->
|
||||
<style name="popmenuStyle" >
|
||||
</style>
|
||||
<!--popmenu的字体颜色-->
|
||||
<style name="popmeuText">
|
||||
<item name="android:textColor">@color/white</item>
|
||||
<item name="android:textSize">14sp</item>
|
||||
<item name="android:gravity">center</item>
|
||||
</style>
|
||||
<!--popMenu分割线的颜色-->
|
||||
<style name="popmenuDivier">
|
||||
<item name="android:divider">@color/color_4C4E55</item>
|
||||
<item name="android:dividerHeight">1px</item>
|
||||
</style>
|
||||
<!--分栏标题的风格-->
|
||||
<style name="columnTitleStyle" >
|
||||
<item name="android:textSize">12sp</item>
|
||||
<item name="android:textColor">@color/colorAccent</item>
|
||||
<item name="android:gravity">center_vertical</item>
|
||||
</style>
|
||||
<!--内容编辑框的风格-->
|
||||
<style name="contentEditBoxStyle" >
|
||||
<item name="android:textSize">14sp</item>
|
||||
</style>
|
||||
</resources>
|
||||
Reference in New Issue
Block a user