完善
This commit is contained in:
5
app/src/main/res/drawable/bg_delete_btn.xml
Normal file
5
app/src/main/res/drawable/bg_delete_btn.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="#E53935"/>
|
||||
<corners android:radius="18dp"/>
|
||||
</shape>
|
||||
4
app/src/main/res/drawable/bg_dialog_round.xml
Normal file
4
app/src/main/res/drawable/bg_dialog_round.xml
Normal file
@@ -0,0 +1,4 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="@android:color/white"/>
|
||||
<corners android:radius="16dp"/>
|
||||
</shape>
|
||||
18
app/src/main/res/drawable/bg_sub_tab.xml
Normal file
18
app/src/main/res/drawable/bg_sub_tab.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- 选中 -->
|
||||
<item android:state_selected="true">
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="14dp" />
|
||||
<solid android:color="#1A000000" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<!-- 未选中 -->
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="14dp" />
|
||||
<solid android:color="@android:color/transparent" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
18
app/src/main/res/drawable/bg_top_tab.xml
Normal file
18
app/src/main/res/drawable/bg_top_tab.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- 选中 -->
|
||||
<item android:state_selected="true">
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="12dp" />
|
||||
<solid android:color="#1A2563EB" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<!-- 未选中 -->
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="12dp" />
|
||||
<solid android:color="#0F000000" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
5
app/src/main/res/drawable/button_cancel_background.xml
Normal file
5
app/src/main/res/drawable/button_cancel_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">
|
||||
<solid android:color="#F1F1F1" />
|
||||
<corners android:radius="24dp" />
|
||||
</shape>
|
||||
5
app/src/main/res/drawable/button_confirm_background.xml
Normal file
5
app/src/main/res/drawable/button_confirm_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">
|
||||
<solid android:color="#02BEAC" />
|
||||
<corners android:radius="24dp" />
|
||||
</shape>
|
||||
15
app/src/main/res/drawable/complete_bg.xml
Normal file
15
app/src/main/res/drawable/complete_bg.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<!-- 半透明白色(玻璃感核心) -->
|
||||
<solid android:color="#66FFFFFF" /> <!-- 40% 透明白 -->
|
||||
|
||||
<!-- 圆角(玻璃一般有圆角) -->
|
||||
<corners
|
||||
android:radius="4dp" />
|
||||
|
||||
<!-- 白色半透明描边,增加玻璃边缘感 -->
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="#66FFFFFF" />
|
||||
</shape>
|
||||
5
app/src/main/res/drawable/dialog_background.xml
Normal file
5
app/src/main/res/drawable/dialog_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">
|
||||
<solid android:color="#FFFFFF" />
|
||||
<corners android:radius="16dp" />
|
||||
</shape>
|
||||
5
app/src/main/res/drawable/dialog_persona_detail_bg.xml
Normal file
5
app/src/main/res/drawable/dialog_persona_detail_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="#FFFFFF"/>
|
||||
<corners android:radius="22dp"/>
|
||||
</shape>
|
||||
13
app/src/main/res/drawable/dot_bg.xml
Normal file
13
app/src/main/res/drawable/dot_bg.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_selected="true">
|
||||
<shape android:shape="oval">
|
||||
<solid android:color="#222222"/>
|
||||
</shape>
|
||||
</item>
|
||||
<item>
|
||||
<shape android:shape="oval">
|
||||
<solid android:color="#33000000"/>
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
||||
5
app/src/main/res/drawable/ic_added.xml
Normal file
5
app/src/main/res/drawable/ic_added.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="#F1F1F1"/>
|
||||
<corners android:radius="50dp"/>
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/input_icon.png
Normal file
BIN
app/src/main/res/drawable/input_icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 856 B |
5
app/src/main/res/drawable/input_message_bg.xml
Normal file
5
app/src/main/res/drawable/input_message_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="#EDEDED"/>
|
||||
<corners android:radius="100dp"/>
|
||||
</shape>
|
||||
5
app/src/main/res/drawable/keyboard_button_bg4.xml
Normal file
5
app/src/main/res/drawable/keyboard_button_bg4.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="#8002BEAC"/>
|
||||
<corners android:radius="50dp"/>
|
||||
</shape>
|
||||
BIN
app/src/main/res/drawable/no_search_result.png
Normal file
BIN
app/src/main/res/drawable/no_search_result.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 85 KiB |
BIN
app/src/main/res/drawable/selected.png
Normal file
BIN
app/src/main/res/drawable/selected.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.1 KiB |
BIN
app/src/main/res/drawable/send_icon.png
Normal file
BIN
app/src/main/res/drawable/send_icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
BIN
app/src/main/res/drawable/shut.png
Normal file
BIN
app/src/main/res/drawable/shut.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.7 KiB |
5
app/src/main/res/drawable/tag_background.xml
Normal file
5
app/src/main/res/drawable/tag_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">
|
||||
<corners android:radius="50dp" />
|
||||
<solid android:color="#000000" />
|
||||
</shape>
|
||||
5
app/src/main/res/drawable/tv_background_bg.xml
Normal file
5
app/src/main/res/drawable/tv_background_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="#F8F8F8"/>
|
||||
<corners android:radius="10dp"/>
|
||||
</shape>
|
||||
Reference in New Issue
Block a user