上传Android项目
5
app/src/main/res/anim/fade_in.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="300"
|
||||
android:fromAlpha="0.0"
|
||||
android:toAlpha="1.0" />
|
||||
5
app/src/main/res/anim/fade_in_fast.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="300"
|
||||
android:fromAlpha="0.0"
|
||||
android:toAlpha="1.0" />
|
||||
5
app/src/main/res/anim/fade_out.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="300"
|
||||
android:fromAlpha="1.0"
|
||||
android:toAlpha="0.0" />
|
||||
5
app/src/main/res/anim/fade_out_fast.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="300"
|
||||
android:fromAlpha="1.0"
|
||||
android:toAlpha="0.0" />
|
||||
7
app/src/main/res/color/nav_text_color.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- 选中时文字颜色 #4EDBC5 -->
|
||||
<item android:color="#4EDBC5" android:state_checked="true" />
|
||||
<!-- 未选中时的文字颜色,自定义一个你喜欢的 -->
|
||||
<item android:color="#8A8A8A" />
|
||||
</selector>
|
||||
5
app/src/main/res/color/track_color.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:color="#30CC65" android:state_checked="true"/> <!-- ON 绿色 -->
|
||||
<item android:color="#D6D6D6"/> <!-- OFF 灰色 -->
|
||||
</selector>
|
||||
8
app/src/main/res/drawable/activity_onboarding_bg.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:startColor="#F3FFF8"
|
||||
android:centerColor="#E1FDFF"
|
||||
android:endColor="#FFFFFF"
|
||||
android:angle="-90"/>
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/agreement.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
app/src/main/res/drawable/ai_dialogue.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
app/src/main/res/drawable/avatar_modification.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
app/src/main/res/drawable/bg.jpg
Normal file
|
After Width: | Height: | Size: 56 KiB |
11
app/src/main/res/drawable/bg_splash.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<!-- 启动页 -->
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- 背景图 -->
|
||||
<item>
|
||||
<bitmap
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/startup_page"/>
|
||||
</item>
|
||||
</layer-list>
|
||||
BIN
app/src/main/res/drawable/blue_star.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
5
app/src/main/res/drawable/bs_handle_bg.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="2dp"/>
|
||||
<solid android:color="#33000000"/>
|
||||
</shape>
|
||||
20
app/src/main/res/drawable/btn_keyboard.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- 按下状态 -->
|
||||
<item android:state_pressed="true">
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#CCCCCC"/>
|
||||
<corners android:radius="4dp"/>
|
||||
<stroke android:width="1dp" android:color="#999999"/>
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<!-- 默认状态 -->
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#FFFFFF"/>
|
||||
<corners android:radius="4dp"/>
|
||||
<stroke android:width="1dp" android:color="#DDDDDD"/>
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
29
app/src/main/res/drawable/btn_keyboard_function.xml
Normal file
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- Shift键激活状态 -->
|
||||
<item android:state_activated="true">
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#4CAF50"/>
|
||||
<corners android:radius="4dp"/>
|
||||
<stroke android:width="1dp" android:color="#388E3C"/>
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<!-- 按下状态 -->
|
||||
<item android:state_pressed="true">
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#9E9E9E"/>
|
||||
<corners android:radius="4dp"/>
|
||||
<stroke android:width="1dp" android:color="#757575"/>
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<!-- 默认状态 -->
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#E0E0E0"/>
|
||||
<corners android:radius="4dp"/>
|
||||
<stroke android:width="1dp" android:color="#BDBDBD"/>
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
BIN
app/src/main/res/drawable/button_bg.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
app/src/main/res/drawable/chat_persona.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
app/src/main/res/drawable/check_the_box.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
app/src/main/res/drawable/circle.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
5
app/src/main/res/drawable/circle_selector.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@drawable/selected_circle" android:state_checked="true"/>
|
||||
<item android:drawable="@drawable/circle"/>
|
||||
</selector>
|
||||
BIN
app/src/main/res/drawable/copy.png
Normal file
|
After Width: | Height: | Size: 702 B |
BIN
app/src/main/res/drawable/delete_icon.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
app/src/main/res/drawable/e_mail.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
app/src/main/res/drawable/emotional_counseling.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
app/src/main/res/drawable/feedback.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
app/src/main/res/drawable/female.png
Normal file
|
After Width: | Height: | Size: 344 KiB |
BIN
app/src/main/res/drawable/first_place.png
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
BIN
app/src/main/res/drawable/five_star_review.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
app/src/main/res/drawable/floating.png
Normal file
|
After Width: | Height: | Size: 59 KiB |
5
app/src/main/res/drawable/gender_background.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||
<solid android:color="#FAFAFA"/>
|
||||
<corners android:radius="11dp"/>
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/gold_coin.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||
<solid android:color="#EDFFFD"/>
|
||||
<corners android:radius="50dp"/>
|
||||
<!-- 白色边框 -->
|
||||
<stroke android:width="1dp" android:color="#FFFFFF"/>
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/gold_coin_button.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
14
app/src/main/res/drawable/gold_coin_recharge_bt_bg.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#FFFFFF" />
|
||||
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="#FFFFFF" />
|
||||
|
||||
<corners
|
||||
android:topLeftRadius="36dp"
|
||||
android:topRightRadius="36dp"
|
||||
android:bottomLeftRadius="0dp"
|
||||
android:bottomRightRadius="0dp" />
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/gold_coin_recharge_button_bg.png
Normal file
|
After Width: | Height: | Size: 45 KiB |
11
app/src/main/res/drawable/gold_coin_recharge_package_bg.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<gradient
|
||||
android:startColor="#F1F1F1"
|
||||
android:endColor="#FFFFFF"
|
||||
android:angle="-90" /> <!-- 90 = 从上到下渐变 -->
|
||||
|
||||
<corners android:radius="10dp" />
|
||||
|
||||
</shape>
|
||||
6
app/src/main/res/drawable/history_item_bg.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#F1F1F1"/>
|
||||
<corners android:radius="50dp"/>
|
||||
<padding android:left="15dp" android:right="15dp" android:top="8dp" android:bottom="8dp"/>
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/home.png
Normal file
|
After Width: | Height: | Size: 766 B |
7
app/src/main/res/drawable/home_selector.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:drawable="@drawable/selected_home" android:state_checked="true"/>
|
||||
<!-- 默认图标 -->
|
||||
<item android:drawable="@drawable/home"/>
|
||||
</selector>
|
||||
170
app/src/main/res/drawable/ic_launcher_background.xml
Normal file
@@ -0,0 +1,170 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="108dp"
|
||||
android:height="108dp"
|
||||
android:viewportWidth="108"
|
||||
android:viewportHeight="108">
|
||||
<path
|
||||
android:fillColor="#3DDC84"
|
||||
android:pathData="M0,0h108v108h-108z" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M9,0L9,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,0L19,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M29,0L29,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M39,0L39,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M49,0L49,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M59,0L59,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M69,0L69,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M79,0L79,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M89,0L89,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M99,0L99,108"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,9L108,9"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,19L108,19"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,29L108,29"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,39L108,39"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,49L108,49"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,59L108,59"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,69L108,69"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,79L108,79"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,89L108,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M0,99L108,99"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,29L89,29"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,39L89,39"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,49L89,49"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,59L89,59"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,69L89,69"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M19,79L89,79"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M29,19L29,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M39,19L39,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M49,19L49,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M59,19L59,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M69,19L69,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:pathData="M79,19L79,89"
|
||||
android:strokeWidth="0.8"
|
||||
android:strokeColor="#33FFFFFF" />
|
||||
</vector>
|
||||
30
app/src/main/res/drawable/ic_launcher_foreground.xml
Normal file
@@ -0,0 +1,30 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:aapt="http://schemas.android.com/aapt"
|
||||
android:width="108dp"
|
||||
android:height="108dp"
|
||||
android:viewportWidth="108"
|
||||
android:viewportHeight="108">
|
||||
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
|
||||
<aapt:attr name="android:fillColor">
|
||||
<gradient
|
||||
android:endX="85.84757"
|
||||
android:endY="92.4963"
|
||||
android:startX="42.9492"
|
||||
android:startY="49.59793"
|
||||
android:type="linear">
|
||||
<item
|
||||
android:color="#44000000"
|
||||
android:offset="0.0" />
|
||||
<item
|
||||
android:color="#00000000"
|
||||
android:offset="1.0" />
|
||||
</gradient>
|
||||
</aapt:attr>
|
||||
</path>
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
|
||||
android:strokeWidth="1"
|
||||
android:strokeColor="#00000000" />
|
||||
</vector>
|
||||
4
app/src/main/res/drawable/keyboard_background.xml
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@color/white" />
|
||||
</selector>
|
||||
4
app/src/main/res/drawable/keyboard_datail_display.xml
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||
<corners android:radius="7dp"/>
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/keyboard_elements.png
Normal file
|
After Width: | Height: | Size: 268 B |
5
app/src/main/res/drawable/keyboard_ettings.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||
<solid android:color="#02BEAC"/>
|
||||
<corners android:radius="50dp"/>
|
||||
</shape>
|
||||
5
app/src/main/res/drawable/list_two_bg.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#111111" /> <!-- 背景色 -->
|
||||
<corners android:radius="5dp" /> <!-- 圆角半径,越大越圆 -->
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/male.png
Normal file
|
After Width: | Height: | Size: 318 KiB |
BIN
app/src/main/res/drawable/member_recharge.png
Normal file
|
After Width: | Height: | Size: 165 KiB |
BIN
app/src/main/res/drawable/mine.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
5
app/src/main/res/drawable/mine_selector.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@drawable/selected_mine" android:state_checked="true"/>
|
||||
<item android:drawable="@drawable/mine"/>
|
||||
</selector>
|
||||
BIN
app/src/main/res/drawable/more_icons.png
Normal file
|
After Width: | Height: | Size: 623 B |
BIN
app/src/main/res/drawable/my_keyboard_bg.png
Normal file
|
After Width: | Height: | Size: 1.4 MiB |
5
app/src/main/res/drawable/my_keyboard_delete.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||
<solid android:color="#02BEAC"/> <!-- 灰色背景 -->
|
||||
<corners android:radius="50dp"/> <!-- 大圆角 -->
|
||||
</shape>
|
||||
14
app/src/main/res/drawable/mykeyboard_bg.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#F6F7FB" />
|
||||
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="#F6F7FB" />
|
||||
|
||||
<corners
|
||||
android:topLeftRadius="36dp"
|
||||
android:topRightRadius="36dp"
|
||||
android:bottomLeftRadius="0dp"
|
||||
android:bottomRightRadius="0dp" />
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/notice.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
app/src/main/res/drawable/option_background.png
Normal file
|
After Width: | Height: | Size: 125 KiB |
BIN
app/src/main/res/drawable/option_background_two.png
Normal file
|
After Width: | Height: | Size: 128 KiB |
BIN
app/src/main/res/drawable/personalized_keyboard.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
app/src/main/res/drawable/pleaseselectyourgender_bg.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
app/src/main/res/drawable/points.png
Normal file
|
After Width: | Height: | Size: 411 KiB |
BIN
app/src/main/res/drawable/points_gold_coins.png
Normal file
|
After Width: | Height: | Size: 352 KiB |
BIN
app/src/main/res/drawable/privacy_policy.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
app/src/main/res/drawable/question_mark_one.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
app/src/main/res/drawable/question_mark_two.png
Normal file
|
After Width: | Height: | Size: 49 KiB |
BIN
app/src/main/res/drawable/recharge_bg.png
Normal file
|
After Width: | Height: | Size: 677 KiB |
7
app/src/main/res/drawable/recharge_card_bg.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<solid android:color=" #FFFFFF" /> <!-- 背景色 -->
|
||||
<corners android:radius="10dp" /> <!-- 圆角半径,越大越圆 -->
|
||||
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/recharge_chat_persona.png
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
app/src/main/res/drawable/recharge_close.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
app/src/main/res/drawable/recharge_emotional_counseling.png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
app/src/main/res/drawable/recharge_equity_bg.png
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
app/src/main/res/drawable/recharge_personalized_keyboard.png
Normal file
|
After Width: | Height: | Size: 99 KiB |
BIN
app/src/main/res/drawable/recharge_points.png
Normal file
|
After Width: | Height: | Size: 191 KiB |
BIN
app/src/main/res/drawable/recharge_wireless_sub_ai_dialogue.png
Normal file
|
After Width: | Height: | Size: 88 KiB |
7
app/src/main/res/drawable/round_bg_one.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<solid android:color=" #FFF3C4" /> <!-- 背景色 -->
|
||||
<corners android:radius="14dp" /> <!-- 圆角半径,越大越圆 -->
|
||||
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/round_bg_others.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<solid android:color=" #D5FFF3" /> <!-- 背景色 -->
|
||||
<corners android:radius="12dp" /> <!-- 圆角半径,越大越圆 -->
|
||||
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/round_bg_three.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<solid android:color=" #FFEEE6" /> <!-- 背景色 -->
|
||||
<corners android:radius="14dp" /> <!-- 圆角半径,越大越圆 -->
|
||||
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/round_bg_two.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<solid android:color=" #D6E7FF" /> <!-- 背景色 -->
|
||||
<corners android:radius="14dp" /> <!-- 圆角半径,越大越圆 -->
|
||||
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/search.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
10
app/src/main/res/drawable/search_input_bg.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#F4F5F9" />
|
||||
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="#E6E6E6" />
|
||||
|
||||
<corners android:radius="50dp" />
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/second_place.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
app/src/main/res/drawable/selected_circle.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
app/src/main/res/drawable/selected_home.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
app/src/main/res/drawable/selected_mine.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
app/src/main/res/drawable/selected_shop.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
7
app/src/main/res/drawable/settings.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<solid android:color="#FFFFFF" /> <!-- 背景色 -->
|
||||
<corners android:radius="8dp" /> <!-- 圆角半径,越大越圆 -->
|
||||
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/share.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
app/src/main/res/drawable/shop.png
Normal file
|
After Width: | Height: | Size: 933 B |
5
app/src/main/res/drawable/shop_selector.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@drawable/selected_shop" android:state_checked="true"/>
|
||||
<item android:drawable="@drawable/shop"/>
|
||||
</selector>
|
||||
BIN
app/src/main/res/drawable/skin.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
app/src/main/res/drawable/startup_page.png
Normal file
|
After Width: | Height: | Size: 3.8 MiB |
BIN
app/src/main/res/drawable/subscript.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
8
app/src/main/res/drawable/tab_normal_bg.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||
<solid android:color="#F1F1F1"/> <!-- 灰色背景 -->
|
||||
<corners android:radius="50dp"/> <!-- 大圆角 -->
|
||||
<stroke
|
||||
android:width="2dp"
|
||||
android:color="#F1F1F1"/> <!-- 不选中的边框颜色 -->
|
||||
</shape>
|
||||
8
app/src/main/res/drawable/tab_selected_bg.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||
<solid android:color="#FFFFFF"/> <!-- 白色背景 -->
|
||||
<corners android:radius="50dp"/> <!-- 大圆角 -->
|
||||
<stroke
|
||||
android:width="2dp"
|
||||
android:color="#02BEAC"/> <!-- 选中边框 -->
|
||||
</shape>
|
||||
5
app/src/main/res/drawable/tag_selected_bg.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="14dp" />
|
||||
<solid android:color="@color/black"/>
|
||||
</shape>
|
||||
6
app/src/main/res/drawable/tag_unselected_bg.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="14dp" />
|
||||
<stroke android:width="1dp" android:color="#33000000"/>
|
||||
<solid android:color="@android:color/transparent"/>
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/third_place.png
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
5
app/src/main/res/drawable/turn_keyboard_btn_bg.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#141414" /> <!-- 背景色 -->
|
||||
<corners android:radius="100dp" /> <!-- 圆角半径,越大越圆 -->
|
||||
</shape>
|
||||
6
app/src/main/res/drawable/tv_download_count.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||
<solid android:color="#EDFFFD"/>
|
||||
<corners android:radius="50dp"/>
|
||||
<padding android:left="9dp" android:right="9dp" android:top="2dp" android:bottom="2dp"/>
|
||||
</shape>
|
||||
5
app/src/main/res/drawable/tv_skip_bg.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||
<solid android:color="#B4EDE7"/>
|
||||
<corners android:radius="50dp"/>
|
||||
</shape>
|
||||