Skip to content

Commit

Permalink
修复示例代码"表格控件-内置图标查看器"打包后不能正常运行BUG
Browse files Browse the repository at this point in the history
  • Loading branch information
wilinz committed Aug 19, 2022
1 parent 03e6e94 commit d72ef14
Show file tree
Hide file tree
Showing 180 changed files with 769 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added common/src/main/res/drawable-xhdpi/ic_ali_log.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added common/src/main/res/drawable-xhdpi/upvote.png
Binary file added common/src/main/res/drawable/arrow_down.png
Binary file added common/src/main/res/drawable/arrow_up.png
Binary file added common/src/main/res/drawable/autojs.png
Binary file added common/src/main/res/drawable/autojs_logo.png
Binary file added common/src/main/res/drawable/autojs_logo1.png
9 changes: 9 additions & 0 deletions common/src/main/res/drawable/avatar_view_bg.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

<corners android:radius="25dp"/>
<size
android:width="50dp"
android:height="50dp"/>
<solid android:color="#d56"/>
</shape>
15 changes: 15 additions & 0 deletions common/src/main/res/drawable/bg_item_module.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?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"/>
</shape>
</item>

<item>
<shape>
<solid android:color="#ffffff"/>
</shape>
</item>
</selector>
15 changes: 15 additions & 0 deletions common/src/main/res/drawable/bg_item_property.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?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"/>
</shape>
</item>

<item>
<shape>
<solid android:color="@android:color/transparent"/>
</shape>
</item>
</selector>
7 changes: 7 additions & 0 deletions common/src/main/res/drawable/bg_label_root_permission.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

<corners android:radius="5dp"/>

<solid android:color="@color/colorAccent"/>
</shape>
11 changes: 11 additions & 0 deletions common/src/main/res/drawable/btn_selector.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?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>

<item>
<color android:color="@android:color/transparent"/>
</item>
</selector>
7 changes: 7 additions & 0 deletions common/src/main/res/drawable/bubble.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/bubble_bg"/>

<corners android:radius="16dp"/>

</shape>
8 changes: 8 additions & 0 deletions common/src/main/res/drawable/circle_blue.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:innerRadius="0dp"
android:shape="ring"
android:thicknessRatio="2"
android:useLevel="false">
<solid android:color="#42a5f5"/>
</shape>
8 changes: 8 additions & 0 deletions common/src/main/res/drawable/circle_gray.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:innerRadius="0dp"
android:shape="ring"
android:thicknessRatio="2"
android:useLevel="false">
<solid android:color="#C0C0C0"/>
</shape>
8 changes: 8 additions & 0 deletions common/src/main/res/drawable/circle_green.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:innerRadius="0dp"
android:shape="ring"
android:thicknessRatio="2"
android:useLevel="false">
<solid android:color="@color/colorPrimary"/>
</shape>
11 changes: 11 additions & 0 deletions common/src/main/res/drawable/circle_light_green.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

<corners android:radius="32dp"/>
<size
android:width="64dp"
android:height="64dp"/>

<solid android:color="#5cab7d"/>

</shape>
8 changes: 8 additions & 0 deletions common/src/main/res/drawable/circle_red.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:innerRadius="0dp"
android:shape="ring"
android:thicknessRatio="2"
android:useLevel="false">
<solid android:color="#ef5350"/>
</shape>
8 changes: 8 additions & 0 deletions common/src/main/res/drawable/circle_white.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:innerRadius="0dp"
android:shape="ring"
android:thicknessRatio="2"
android:useLevel="false">
<solid android:color="#ffffff"/>
</shape>
8 changes: 8 additions & 0 deletions common/src/main/res/drawable/circle_yellow.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:innerRadius="0dp"
android:shape="ring"
android:thicknessRatio="2"
android:useLevel="false">
<solid android:color="#fdd835"/>
</shape>
9 changes: 9 additions & 0 deletions common/src/main/res/drawable/code_edit_text_cursor.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<solid android:color="#1e88e5"/>

<size android:width="1dp"/>

</shape>
11 changes: 11 additions & 0 deletions common/src/main/res/drawable/divider_functions_view.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<size
android:width="1dp"
android:height="1dp"/>

<solid android:color="@color/divider_functions_keyboard"/>

</shape>
Binary file added common/src/main/res/drawable/download.png
Binary file added common/src/main/res/drawable/downvote.png
10 changes: 10 additions & 0 deletions common/src/main/res/drawable/drawer_header_shadow.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
>

<gradient
android:angle="270"
android:endColor="#7d000000"
android:startColor="#27ffffff"/>
</shape>
Binary file added common/src/main/res/drawable/filedialog_file.png
Binary file added common/src/main/res/drawable/filedialog_root.png
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

<solid android:color="#cc424347"/>

<corners android:radius="2dp"/>
</shape>
4 changes: 4 additions & 0 deletions common/src/main/res/drawable/ic_add_white_48dp.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="1024"
android:viewportWidth="1024" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FFFFFFFF" android:pathData="M342.84,551.42c-34.42,0 -68.85,-0.58 -103.24,0.27c-14.83,0.37 -21.58,-1.96 -21.8,-19.66c-0.81,-65.37 -1.6,-65.36 63.2,-65.36c54.71,0 109.45,-1.04 164.12,0.52c21.4,0.61 28.6,-4.17 28.04,-27.02c-1.65,-67.91 0.29,-135.9 -1.12,-203.82c-0.43,-20.53 6.05,-24.68 25.23,-24.42c60.04,0.83 60.05,0.01 60.05,60.52c0,55.59 1.03,111.22 -0.52,166.77c-0.59,21.4 4.17,28.6 27.02,28.04c67.91,-1.65 135.9,0.29 203.82,-1.12c20.53,-0.43 24.68,6.04 24.42,25.23c-0.83,60.04 -0.01,60.05 -60.52,60.05c-55.59,0 -111.22,1.03 -166.77,-0.52c-21.4,-0.59 -28.6,4.17 -28.04,27.02c1.65,67.91 -0.29,135.9 1.12,203.82c0.43,20.53 -6.04,24.68 -25.23,24.42c-60.04,-0.83 -60.05,-0.01 -60.05,-60.52c0,-56.48 -0.79,-112.97 0.44,-169.42c0.42,-19.04 -3.53,-26.42 -24.31,-25.32C413.51,552.79 378.14,551.42 342.84,551.42z"/>
</vector>
7 changes: 7 additions & 0 deletions common/src/main/res/drawable/ic_ali_android.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<vector android:height="24dp" android:viewportHeight="200"
android:viewportWidth="200" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M128.51,149.75c0,6.16 0.14,11.84 -0.06,17.52c-0.1,2.81 -0.38,5.77 -1.36,8.37c-1.61,4.28 -4.77,5.81 -9.24,5.61c-4.26,-0.19 -6.92,-2.64 -7.99,-6.33c-0.93,-3.19 -1.04,-6.67 -1.17,-10.03c-0.18,-4.87 -0.05,-9.76 -0.05,-15.13c-5.75,0 -10.58,0 -16.37,0c0,5.47 0.16,10.87 -0.06,16.26c-0.12,3.07 -0.52,6.22 -1.39,9.15c-1.15,3.89 -4.22,5.82 -8.26,6c-4.09,0.18 -7.51,-1.96 -8.91,-6.24c-0.95,-2.91 -1.28,-6.1 -1.41,-9.18c-0.22,-5.16 -0.06,-10.33 -0.06,-15.93c-2.91,-0.24 -5.17,-0.39 -7.42,-0.62c-6.1,-0.63 -8.79,-3.21 -9.65,-9.27c-0.15,-1.03 -0.13,-2.08 -0.13,-3.12c0,-21.36 0,-42.73 0.02,-64.09c0,-1 0.21,-2.01 0.38,-3.51c29.74,0 59.3,0 89.32,0c0.18,1.79 0.5,3.54 0.5,5.28c0.04,20.58 0.03,41.17 0.02,61.75c0,1.56 0.07,3.15 -0.19,4.68c-0.86,5.02 -3.72,7.65 -8.92,8.26C133.83,149.43 131.54,149.52 128.51,149.75z"/>
<path android:fillColor="#FF000000" android:pathData="M55.51,62.01c2.39,-14.73 11.07,-24.19 23.23,-31.12c-2.79,-4.57 -5.25,-8.61 -7.71,-12.64c0.54,-0.35 1.08,-0.7 1.61,-1.05c2.95,4.02 5.9,8.04 9.11,12.41c12.22,-4.4 24.44,-4.28 36.83,0.29c3.35,-4.4 6.55,-8.6 9.75,-12.79c0.54,0.35 1.08,0.71 1.63,1.06c-2.67,4.15 -5.34,8.29 -8.37,13c11.88,7.12 20.1,16.61 22.51,30.84C114.59,62.01 85.53,62.01 55.51,62.01z"/>
<path android:fillColor="#FF000000" android:pathData="M48.71,98.53c0,6.25 0.18,12.5 -0.05,18.74c-0.25,7.01 -3.91,10.91 -9.66,10.8c-5.33,-0.1 -9.29,-3.96 -9.43,-10.33c-0.29,-12.75 -0.31,-25.51 -0.02,-38.25c0.15,-6.65 4.63,-10.84 10.15,-10.52c5.27,0.3 8.72,4.26 8.95,10.83C48.88,86.03 48.71,92.28 48.71,98.53z"/>
<path android:fillColor="#FF000000" android:pathData="M151.54,98.34c0,-6.49 -0.28,-13 0.08,-19.47c0.36,-6.36 4.29,-9.69 10.09,-9.34c4.71,0.29 7.96,3.18 8.72,8.37c0.45,3.06 0.3,6.21 0.31,9.32c0.03,8.83 0.02,17.65 0,26.48c0,1.81 0.05,3.65 -0.22,5.44c-0.89,5.89 -4.52,9.2 -9.77,9.07c-5.11,-0.13 -8.88,-3.77 -9.16,-9.64C151.29,111.85 151.53,105.09 151.54,98.34z"/>
</vector>
11 changes: 11 additions & 0 deletions common/src/main/res/drawable/ic_ali_app.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<vector android:height="24dp" android:viewportHeight="200"
android:viewportWidth="200" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M46.15,161.07c-4.19,-1.52 -8.87,-3.51 -12.14,-7.12c-3.26,-3.6 0.74,-6.77 2.39,-9.66c13.85,-24.31 28.18,-48.35 41.7,-72.84c4.37,-7.91 8.37,-5.61 14.26,-2.57c6.66,3.44 6.57,6.86 3.06,12.8c-14.38,24.3 -28.27,48.88 -42.46,73.29C51.5,157.48 50.76,161.09 46.15,161.07z"/>
<path android:fillColor="#010101" android:pathData="M93.57,29.92c0.17,-1.45 -0.43,-3.12 1.3,-3.43c0.8,-0.14 2.02,0.5 2.62,1.17c1.55,1.74 2.99,3.6 4.24,5.57c18.3,29.03 35.15,58.87 51.02,89.29c2.83,5.41 1.46,8.82 -3.41,11.53c-4.89,2.72 -9.07,2.15 -11.8,-3.09c-16.36,-31.34 -30.52,-63.66 -43.03,-96.71C93.95,32.81 93.84,31.21 93.57,29.92z"/>
<path android:fillColor="#FF000000" android:pathData="M57.72,93.75c-6.01,10.4 -11.25,19.29 -16.28,28.3c-1.33,2.38 -3.03,3.02 -5.59,3.23c-23.6,1.96 -23.59,2 -23.53,-21.32c0.03,-10.19 0.03,-10.2 10.45,-10.21C33.91,93.75 45.05,93.75 57.72,93.75z"/>
<path android:fillColor="#FF000000" android:pathData="M145.09,93.76c12.26,0 23.12,0.1 33.98,-0.05c4.99,-0.07 7.02,2.05 6.84,7c-0.21,5.94 0,11.9 -0.09,17.85c-0.02,1.51 -0.09,3.25 -0.82,4.48c-2.19,3.72 -22.75,3.17 -24.88,-0.74C155.18,113.29 150.52,104.13 145.09,93.76z"/>
<path android:fillColor="#010101" android:pathData="M81.27,125.22c6.1,-10.56 11.3,-20.02 16.98,-29.19c2.49,-4.01 10.75,-3.3 12.88,0.94c3.96,7.88 7.56,15.93 11.36,23.88c1.32,2.77 1.14,4.4 -2.49,4.38C107.61,125.18 95.22,125.22 81.27,125.22z"/>
<path android:fillColor="#030303" android:pathData="M156.08,137.59c3.4,-0.04 9.54,8.51 9.64,13.08c0.11,5.08 -3.85,6.33 -7.61,7.21c-2.74,0.64 -11.71,-10.07 -11.06,-13.42C148,139.53 152.9,139.3 156.08,137.59z"/>
<path android:fillColor="#030303" android:pathData="M176.72,174.77c-0.61,1.51 1.5,4.37 -1.71,4.9c-4.51,0.74 -15.73,-8.74 -15.87,-13.25c-0.17,-5.39 3.5,-7.27 7.96,-7.74C173.11,158.05 176.52,163.88 176.72,174.77z"/>
<path android:fillColor="#080808" android:pathData="M26.37,171.49c0.16,-1.8 0.26,-3.6 0.46,-5.39c0.88,-7.69 1.65,-8.08 8.38,-4.38c9.87,5.43 9.88,5.72 0.47,12.03c-0.86,0.57 -1.71,1.15 -2.58,1.7c-1.91,1.19 -3.43,3.28 -5.9,3.18C25.93,178.58 25.83,177.19 26.37,171.49z"/>
</vector>
4 changes: 4 additions & 0 deletions common/src/main/res/drawable/ic_ali_close.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="200"
android:viewportWidth="200" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M100.1,110.07c-1.26,1.17 -2.61,2.35 -3.87,3.61c-16.7,16.68 -33.38,33.39 -50.09,50.06c-1.42,1.42 -2.88,2.85 -4.52,4.01c-2.79,1.99 -5.58,1.52 -7.93,-0.81c-2.18,-2.17 -2.37,-4.92 -0.9,-7.44c1.11,-1.9 2.82,-3.48 4.4,-5.06c16.51,-16.55 33.06,-33.08 49.58,-49.62c4.51,-4.52 4.51,-4.55 -0.14,-9.2c-16.68,-16.7 -33.39,-33.38 -50.06,-50.09c-5.08,-5.09 -5.93,-9.04 -2.69,-12.02c3.08,-2.83 6.77,-1.99 11.58,2.82c16.87,16.84 33.69,33.72 50.56,50.55c4.73,4.72 3.82,4.84 8.69,-0.03c16.7,-16.68 33.38,-33.39 50.09,-50.07c5.3,-5.29 8.83,-6.22 12.07,-3.3c3.42,3.09 2.5,6.99 -3,12.49c-16.69,16.7 -33.4,33.37 -50.07,50.09c-5.06,5.08 -4.61,3.98 0.02,8.63c16.18,16.25 32.41,32.45 48.62,48.68c0.79,0.8 1.6,1.58 2.38,2.39c4.59,4.73 5.26,8.56 2.02,11.5c-3.11,2.83 -6.38,2.18 -10.99,-2.42c-17.2,-17.14 -34.34,-34.34 -51.54,-51.48C103.12,112.16 102.21,110.5 100.1,110.07z"/>
</vector>
Binary file added common/src/main/res/drawable/ic_ali_down.png
Binary file added common/src/main/res/drawable/ic_ali_exit.png
7 changes: 7 additions & 0 deletions common/src/main/res/drawable/ic_ali_fullscreen.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<vector android:height="24dp" android:viewportHeight="200"
android:viewportWidth="200" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M40.33,33.39c11,10.99 20.71,20.69 30.42,30.4c3.08,3.08 6.15,6.16 9.22,9.25c2.31,2.32 3.74,4.94 0.96,7.69c-2.79,2.76 -5.33,1.29 -7.67,-1.05C61.2,67.67 49.11,55.69 37.03,43.71c-0.79,-0.79 -1.67,-1.5 -3.42,-3.06c0,7.68 -0.07,14.3 0.03,20.91c0.05,3.31 -0.92,5.22 -4.69,5.19c-3.63,-0.03 -4.89,-1.72 -4.88,-5.11c0.05,-10.89 0.09,-21.78 -0.05,-32.66c-0.04,-3.59 1.39,-4.96 4.91,-4.95c10.68,0.04 21.36,-0.07 32.05,-0.18c3.42,-0.04 5.92,0.88 5.89,4.87c-0.03,3.99 -2.48,4.8 -5.94,4.71C54.69,33.28 48.43,33.39 40.33,33.39z"/>
<path android:fillColor="#FF000000" android:pathData="M33.61,160.84c14.05,-14.36 26.34,-26.94 38.65,-39.49c2.36,-2.41 4.87,-5.53 8.42,-2.15c3.81,3.61 0.7,6.34 -1.84,8.9c-12.39,12.47 -24.78,24.93 -38.28,38.51c7.62,0 14.18,0.08 20.74,-0.03c3.24,-0.05 5.34,0.74 5.45,4.5c0.1,3.6 -1.62,5.06 -4.99,5.04c-11.07,-0.06 -22.15,-0.16 -33.22,-0.17c-3.29,0 -4.54,-1.5 -4.51,-4.74c0.1,-10.88 0.1,-21.76 0.04,-32.65c-0.02,-3.29 0.98,-5.21 4.68,-5.32c4.12,-0.12 4.98,2.03 4.9,5.57C33.51,145.27 33.61,151.73 33.61,160.84z"/>
<path android:fillColor="#FF000000" android:pathData="M166.59,39.72c-13.63,13.74 -26.15,26.36 -38.65,38.98c-2.43,2.45 -5,5.39 -8.47,2.11c-3.83,-3.62 -0.63,-6.32 1.94,-8.88c12.45,-12.39 24.89,-24.78 38.73,-38.55c-8.43,0 -15.04,-0.08 -21.65,0.04c-3.14,0.06 -4.99,-1.22 -5.14,-4.34c-0.16,-3.33 1.54,-5.22 4.99,-5.2c11.08,0.05 22.17,0.17 33.25,0.17c3.3,0 4.59,1.48 4.55,4.71c-0.14,11.09 -0.19,22.17 -0.2,33.26c0,3.19 -1.32,4.67 -4.61,4.73c-3.68,0.06 -4.83,-1.69 -4.77,-5.11C166.68,54.92 166.59,48.2 166.59,39.72z"/>
<path android:fillColor="#FF000000" android:pathData="M159.96,166.61c-13.67,-13.66 -25.98,-25.94 -38.27,-38.26c-2.48,-2.48 -6.1,-5.12 -2.47,-8.88c3.95,-4.08 6.76,-0.19 9.31,2.42c12.15,12.45 24.22,24.98 38.07,39.29c0,-9.27 0.05,-15.86 -0.02,-22.45c-0.03,-3.1 0.41,-5.42 4.38,-5.5c4.09,-0.08 5.01,2 5,5.55c-0.04,10.29 -0.05,20.59 0.22,30.88c0.12,4.47 -1.17,6.46 -6.04,6.35c-10.28,-0.24 -20.58,0 -30.87,0.12c-3.43,0.04 -5.96,-0.87 -5.93,-4.84c0.03,-3.94 2.48,-4.83 5.96,-4.74C145.56,166.72 151.84,166.61 159.96,166.61z"/>
</vector>
Binary file added common/src/main/res/drawable/ic_ali_fx.png
Binary file added common/src/main/res/drawable/ic_ali_record.png
Binary file added common/src/main/res/drawable/ic_ali_register.png
Binary file added common/src/main/res/drawable/ic_ali_replace.png
Binary file added common/src/main/res/drawable/ic_ali_settings.png
Binary file added common/src/main/res/drawable/ic_ali_up.png
5 changes: 5 additions & 0 deletions common/src/main/res/drawable/ic_android.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<vector android:autoMirrored="true" android:height="24dp"
android:viewportHeight="1024" android:viewportWidth="1024"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M789.3,277.3c-8.5,0 -14.9,2.1 -21.3,4.3v-4.3h-2.1c-8.5,-66.1 -53.3,-123.7 -115.2,-157.9L680.5,76.8c0,-4.3 2.1,-8.5 2.1,-12.8 0,-12.8 -8.5,-21.3 -21.3,-21.3 -6.4,0 -12.8,4.3 -17.1,10.7L610.1,102.4c-29.9,-10.7 -64,-17.1 -98.1,-17.1s-68.3,6.4 -98.1,17.1l-34.1,-49.1c-4.3,-6.4 -10.7,-10.7 -17.1,-10.7 -12.8,0 -21.3,8.5 -21.3,21.3 0,4.3 2.1,8.5 4.3,10.7l29.9,42.7c-64,34.1 -108.8,91.7 -115.2,157.9L256,275.2v4.3c-6.4,-2.1 -12.8,-4.3 -21.3,-4.3 -36.3,0 -64,27.7 -64,64v298.7c0,36.3 27.7,64 64,64 8.5,0 14.9,-2.1 21.3,-4.3L256,768c0,23.5 19.2,42.7 42.7,42.7h42.7v106.7c0,36.3 27.7,64 64,64s64,-27.7 64,-64L469.3,810.7h85.3v106.7c0,36.3 27.7,64 64,64s64,-27.7 64,-64L682.7,810.7h42.7C748.8,810.7 768,791.5 768,768v-68.3c6.4,2.1 12.8,4.3 21.3,4.3 36.3,0 64,-27.7 64,-64L853.3,341.3c0,-36.3 -27.7,-64 -64,-64zM256,640c0,12.8 -8.5,21.3 -21.3,21.3S213.3,652.8 213.3,640L213.3,341.3c0,-12.8 8.5,-21.3 21.3,-21.3S256,328.5 256,341.3L256,640zM512,128c108.8,0 198.4,66.1 211.2,149.3L300.8,277.3C313.6,194.1 403.2,128 512,128zM426.7,917.3c0,12.8 -8.5,21.3 -21.3,21.3S384,930.1 384,917.3L384,810.7h42.7v106.7zM640,917.3c0,12.8 -8.5,21.3 -21.3,21.3s-21.3,-8.5 -21.3,-21.3L597.3,810.7L640,810.7v106.7zM725.3,768L298.7,768L298.7,320h426.7v448zM810.7,640c0,12.8 -8.5,21.3 -21.3,21.3S768,652.8 768,640L768,341.3c0,-12.8 8.5,-21.3 21.3,-21.3s21.3,8.5 21.3,21.3L810.7,640zM576,192c-12.8,0 -21.3,8.5 -21.3,21.3 0,12.8 8.5,21.3 21.3,21.3s21.3,-8.5 21.3,-21.3c0,-12.8 -8.5,-21.3 -21.3,-21.3zM448,192c-12.8,0 -21.3,8.5 -21.3,21.3 0,12.8 8.5,21.3 21.3,21.3s21.3,-8.5 21.3,-21.3c0,-12.8 -8.5,-21.3 -21.3,-21.3z"/>
</vector>
8 changes: 8 additions & 0 deletions common/src/main/res/drawable/ic_android_fill.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<vector android:autoMirrored="true" android:height="24dp"
android:viewportHeight="128" android:viewportWidth="128"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M77.4,20.7l5.5,-8c0.2,-0.3 0.1,-0.8 -0.2,-1l-0.1,-0.1c-0.3,-0.2 -0.8,-0.1 -1,0.2L75.9,20c-3.7,-1.6 -7.8,-2.5 -12.1,-2.5c-4.1,0 -8,0.8 -11.5,2.3l-5.4,-7.8c-0.2,-0.3 -0.7,-0.4 -1,-0.2l-0.1,0.1c-0.3,0.2 -0.4,0.7 -0.2,1l5.2,7.6c-8.2,3.9 -14.1,11.4 -15.3,20.2h56.7C91,32 85.3,24.7 77.4,20.7zM51.9,32.1c-1.6,0 -2.8,-1.3 -2.8,-2.8s1.3,-2.8 2.8,-2.8c1.6,0 2.8,1.3 2.8,2.8C54.7,30.9 53.4,32.1 51.9,32.1zM76.3,32.1c-1.6,0 -2.8,-1.3 -2.8,-2.8s1.3,-2.8 2.8,-2.8c1.6,0 2.8,1.3 2.8,2.8C79.1,30.9 77.8,32.1 76.3,32.1z"/>
<path android:fillColor="#FF000000" android:pathData="M31.5,52v23.2c0,4 -2.5,7.2 -5.6,7.2h-1.3c-3.1,0 -5.6,-3.3 -5.6,-7.2V52c0,-4 2.5,-7.2 5.6,-7.2h1.3C29,44.8 31.5,48.1 31.5,52z"/>
<path android:fillColor="#FF000000" android:pathData="M109,52.2v23.2c0,4 -2.5,7.2 -5.6,7.2h-1.3c-3.1,0 -5.6,-3.3 -5.6,-7.2V52.2c0,-4 2.5,-7.2 5.6,-7.2h1.3C106.5,44.9 109,48.2 109,52.2z"/>
<path android:fillColor="#FF000000" android:pathData="M92.6,44.4v45.8c0,3.2 -2.6,5.8 -5.8,5.8h-4.8v13.2c0,4 -2.5,7.2 -5.6,7.2h-1.3c-3.1,0 -5.6,-3.3 -5.6,-7.2V96H59v13.1c0,4 -2.5,7.2 -5.6,7.2h-1.3c-3.1,0 -5.6,-3.3 -5.6,-7.2V96h-5.2c-3.2,0 -5.8,-2.6 -5.8,-5.8V44.4H92.6z"/>
</vector>
Binary file added common/src/main/res/drawable/ic_ascending_order.png
4 changes: 4 additions & 0 deletions common/src/main/res/drawable/ic_backup.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="128"
android:viewportWidth="128" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M97.9,54.9C94.7,39.4 81,27.5 64,27.5c-13.3,0 -24.8,7.3 -30.2,18.3C19.5,47.6 9,59 9,73.1c0,15.1 12.4,27.4 27.5,27.4h59.6c12.8,0 22.9,-10 22.9,-22.8C119,65.8 109.4,55.8 97.9,54.9zM73.2,68.6v18.2H54.8V68.6H41.1L64,45.8l22.9,22.8H73.2z"/>
</vector>
7 changes: 7 additions & 0 deletions common/src/main/res/drawable/ic_circular_menu_bounds.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<vector android:height="24dp" android:viewportHeight="1024"
android:viewportWidth="1024" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M511.41,690.55c-97.82,-0.47 -178.37,-81.61 -177.89,-179.17c0.49,-98.21 80.97,-178.06 179.05,-177.64c98.07,0.42 178.45,81.22 177.98,178.92C690.08,610.47 608.96,691.02 511.41,690.55z"/>
<path android:fillColor="#010101" android:pathData="M516.35,65.88c170.65,8.33 301.18,83.8 387.07,233.15c6.4,11.13 24.5,26.43 -3.73,35.57c-17.74,5.74 -31.42,24.2 -49.12,-7.89c-99.14,-179.67 -321.7,-257.27 -513.96,-157.3c-31.24,16.24 -29.31,-12.83 -39.84,-24.75c-16.67,-18.88 0.86,-23.65 13.52,-30.08C374.91,81.77 443.33,65.32 516.35,65.88z"/>
<path android:fillColor="#010101" android:pathData="M66.64,510.79c-1.02,-84.05 22.61,-161.3 65.68,-232.75c6.84,-11.34 13.11,-33.7 33.92,-13.36c11.92,11.65 36.55,12.68 18.91,43.16c-111.01,191.76 -66.45,396.45 114.49,526c28.05,20.08 7.59,31.06 1.28,46.87c-10.65,26.67 -24.3,10.07 -36.26,2.28C141.83,802.99 65.86,659.91 66.64,510.79z"/>
<path android:fillColor="#010101" android:pathData="M523.49,957.42c-7.92,0.03 -16.39,1.81 -23.65,-0.38c-11.78,-3.55 -36.23,10.78 -31.17,-19.07c3.29,-19.41 -3.25,-40.72 34.38,-40.03c204.75,3.73 367.68,-142.67 393.64,-347.54c1.76,-13.91 -8.79,-35.52 18.86,-40c28.57,-4.63 43.62,-5.13 41.67,34.22C946.34,765.07 754.11,949.66 523.49,957.42z"/>
</vector>
Loading

0 comments on commit d72ef14

Please sign in to comment.