mirror of
https://github.com/LittleTurtle2333/SimplicityTools.git
synced 2026-07-13 03:41:19 +08:00
First Commit
This commit is contained in:
20
app/src/main/res/values/arrays.xml
Normal file
20
app/src/main/res/values/arrays.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string-array name="xposed_scope">
|
||||
<item>android</item>
|
||||
<item>com.miui.securitycenter</item>
|
||||
<item>com.android.systemui</item>
|
||||
<item>com.miui.powerkeeper</item>
|
||||
<item>com.miui.home</item>
|
||||
</string-array>
|
||||
<!-- Reply Preference -->
|
||||
<string-array name="reply_entries">
|
||||
<item>Reply</item>
|
||||
<item>Reply to all</item>
|
||||
</string-array>
|
||||
|
||||
<string-array name="reply_values">
|
||||
<item>reply</item>
|
||||
<item>reply_all</item>
|
||||
</string-array>
|
||||
</resources>
|
||||
10
app/src/main/res/values/colors.xml
Normal file
10
app/src/main/res/values/colors.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="purple_200">#FFBB86FC</color>
|
||||
<color name="purple_500">#FF6200EE</color>
|
||||
<color name="purple_700">#FF3700B3</color>
|
||||
<color name="teal_200">#FF03DAC5</color>
|
||||
<color name="teal_700">#FF018786</color>
|
||||
<color name="black">#FF000000</color>
|
||||
<color name="white">#FFFFFFFF</color>
|
||||
</resources>
|
||||
3
app/src/main/res/values/dimens.xml
Normal file
3
app/src/main/res/values/dimens.xml
Normal file
@@ -0,0 +1,3 @@
|
||||
<resources>
|
||||
<dimen name="fab_margin">16dp</dimen>
|
||||
</resources>
|
||||
22
app/src/main/res/values/strings.xml
Normal file
22
app/src/main/res/values/strings.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">Simplicity Tools</string>
|
||||
<string name="performance">性能</string>
|
||||
<string name="lock_max_fps">锁定最高刷新率</string>
|
||||
<string name="lock_max_fps_summary">始终保持最高刷新率运行</string>
|
||||
<string name="ui">界面</string>
|
||||
<string name="delete_on_post_notification">移除上层显示通知</string>
|
||||
<string name="delete_on_post_notification_summary">移除"此应用正显示在屏幕上其他应用的上层"通知</string>
|
||||
<string name="other">其他</string>
|
||||
<string name="disable_flag_secure">允许截图</string>
|
||||
<string name="disable_flag_secure_summary">开启后允许在不允许截图的软件中截图</string>
|
||||
<string name="core_patch">核心破解</string>
|
||||
<string name="core_patch_summary">降级安装、不同签名安装、无视签名</string>
|
||||
<string name="hide_no_sim_icon">隐藏无SIM卡图标</string>
|
||||
<string name="status_bar_icon">状态栏图标</string>
|
||||
<string name="home">桌面</string>
|
||||
<string name="home_time">始终显示桌面时钟</string>
|
||||
<string name="hide_sim_one_icon">隐藏SIM卡一图标</string>
|
||||
<string name="hide_sim_two_icon">隐藏SIM卡二图标</string>
|
||||
<string name="reboot_ui">重启UI</string>
|
||||
</resources>
|
||||
23
app/src/main/res/values/themes.xml
Normal file
23
app/src/main/res/values/themes.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Base application theme. -->
|
||||
<style name="Theme.MyApplication" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
|
||||
<!-- Primary brand color. -->
|
||||
<item name="colorPrimary">@color/purple_500</item>
|
||||
<item name="colorPrimaryVariant">@color/purple_700</item>
|
||||
<item name="colorOnPrimary">@color/white</item>
|
||||
<!-- Secondary brand color. -->
|
||||
<item name="colorSecondary">@color/teal_200</item>
|
||||
<item name="colorSecondaryVariant">@color/teal_700</item>
|
||||
<item name="colorOnSecondary">@color/black</item>
|
||||
<!-- Status bar color. -->
|
||||
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
|
||||
<!-- Customize your theme here. -->
|
||||
</style>
|
||||
<style name="Theme.MyApplication.NoActionBar">
|
||||
<item name="windowActionBar">false</item>
|
||||
<item name="windowNoTitle">true</item>
|
||||
</style>
|
||||
<style name="Theme.MyApplication.AppBarOverlay"
|
||||
parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
|
||||
<style name="Theme.MyApplication.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
|
||||
</resources>
|
||||
Reference in New Issue
Block a user