6.5.0 - 新增 opencc 模块; 修复编辑器问题; 优化打包应用功能及文件管理器
This commit is contained in:
@@ -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>
|
||||
@@ -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"/>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
BIN
app/src/main/res/drawable/ic_add_48dp.png
Normal file
BIN
app/src/main/res/drawable/ic_add_48dp.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.3 KiB |
BIN
app/src/main/res/drawable/ic_packaging.png
Normal file
BIN
app/src/main/res/drawable/ic_packaging.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.3 KiB |
7
app/src/main/res/drawable/round_checkbox.xml
Normal file
7
app/src/main/res/drawable/round_checkbox.xml
Normal 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>
|
||||
39
app/src/main/res/drawable/round_checkbox_checked.xml
Normal file
39
app/src/main/res/drawable/round_checkbox_checked.xml
Normal 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>
|
||||
12
app/src/main/res/drawable/round_checkbox_disabled.xml
Normal file
12
app/src/main/res/drawable/round_checkbox_disabled.xml
Normal 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>
|
||||
10
app/src/main/res/drawable/round_checkbox_unchecked.xml
Normal file
10
app/src/main/res/drawable/round_checkbox_unchecked.xml
Normal 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>
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user