6.5.0 - 新增 opencc 模块; 修复编辑器问题; 优化打包应用功能及文件管理器

This commit is contained in:
SuperMonster003
2023-12-02 13:52:14 +08:00
parent afc0bce2c9
commit 17616504ab
907 changed files with 6766 additions and 3005 deletions

View File

@@ -1,15 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true">
<shape>
<solid android:color="#e5e5e5"/>
<solid android:color="@color/window_background_selected"/>
</shape>
</item>
<item>
<shape>
<solid android:color="#ffffff"/>
<solid android:color="@color/window_background"/>
</shape>
</item>
</selector>

View File

@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape>
<solid android:color="#e5e5e5"/>

View File

@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<color android:color="#cccccc"/>
</item>

View File

@@ -1,10 +1,8 @@
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="270"
android:endColor="#7d000000"
android:startColor="#27ffffff"/>
android:angle="270"
android:endColor="#7d000000"
android:startColor="#27ffffff" />
</shape>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:drawable="@drawable/round_checkbox_checked" />
<item android:state_enabled="false" android:drawable="@drawable/round_checkbox_disabled" />
<item android:state_pressed="true" android:drawable="@drawable/round_checkbox_checked" />
<item android:state_pressed="false" android:drawable="@drawable/round_checkbox_unchecked" />
</selector>

View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="oval">
<corners android:radius="1dp" />
<stroke
android:width="1.2dp"
android:color="@color/text_color_primary_full" />
<size
android:width="30dp"
android:height="30dp" />
</shape>
</item>
<item
android:width="8dp"
android:height="2dp"
android:top="20dp"
android:left="6dp">
<rotate android:fromDegrees="45">
<shape android:shape="rectangle">
<solid android:color="@color/text_color_primary_full" />
</shape>
</rotate>
</item>
<item
android:width="19dp"
android:height="2dp"
android:top="16dp"
android:left="8.8dp">
<rotate android:fromDegrees="-45">
<shape android:shape="rectangle">
<solid android:color="@color/text_color_primary_full" />
</shape>
</rotate>
</item>
</layer-list>

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
<corners android:radius="1dp" />
<stroke
android:dashGap="2.3dp"
android:dashWidth="3dp"
android:width="1.2dp"
android:color="@color/text_color_primary_alpha_70" />
<size
android:width="30dp"
android:height="30dp" />
</shape>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
<corners android:radius="1dp" />
<stroke
android:width="1.2dp"
android:color="@color/text_color_primary_full" />
<size
android:width="30dp"
android:height="30dp" />
</shape>

View File

@@ -0,0 +1,6 @@
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<size
android:width="1dp"
android:height="12dp" />
<solid android:color="@android:color/transparent" />
</shape>