mirror of
https://github.com/blanking003/cx-cocos.git
synced 2025-10-30 19:05:30 +00:00
init
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<!-- 填充颜色 -->
|
||||
<solid android:color="@color/navy"></solid>
|
||||
|
||||
<!-- 线的宽度,颜色 -->
|
||||
<stroke android:width="0dp" android:color="@color/navy"></stroke>
|
||||
|
||||
<!-- 矩形的圆角半径 -->
|
||||
<corners android:radius="20dp" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<!-- 填充颜色 -->
|
||||
<solid android:color="#00000000"></solid>
|
||||
|
||||
<!-- 线的宽度,颜色 -->
|
||||
<stroke android:width="1dp" android:color="@color/navy"></stroke>
|
||||
|
||||
<!-- 矩形的圆角半径 -->
|
||||
<corners android:radius="20dp" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<size android:width="4dp"
|
||||
android:height="4dp" />
|
||||
|
||||
<solid android:color="@android:color/transparent" />
|
||||
</shape>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<!-- 填充颜色 -->
|
||||
<solid android:color="#33fff000"></solid>
|
||||
|
||||
<!-- 线的宽度,颜色 -->
|
||||
<stroke android:width="1dp" android:color="@color/navy"></stroke>
|
||||
|
||||
<!-- 矩形的圆角半径 -->
|
||||
<corners android:radius="6dp" />
|
||||
|
||||
<padding android:left="5dp" android:right="5dp" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<!-- 填充颜色 -->
|
||||
<solid android:color="@color/white_e0"></solid>
|
||||
|
||||
<!-- 线的宽度,颜色 -->
|
||||
<stroke android:width="1dp" android:color="@color/gray9"></stroke>
|
||||
|
||||
<!-- 矩形的圆角半径 -->
|
||||
<corners android:radius="6dp" />
|
||||
|
||||
<padding android:left="5dp" android:right="5dp" />
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<!-- 填充颜色 -->
|
||||
<solid android:color="@color/white_f7"></solid>
|
||||
|
||||
<!-- 线的宽度,颜色 -->
|
||||
<stroke android:width="1dp" android:color="@color/gray9"></stroke>
|
||||
|
||||
<!-- 矩形的圆角半径 -->
|
||||
<corners android:radius="6dp" />
|
||||
|
||||
<padding android:left="5dp" android:right="5dp" />
|
||||
|
||||
</shape>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_selected="true" android:drawable="@drawable/edit_focus"/>
|
||||
<item android:state_focused="true" android:drawable="@drawable/edit_focus" />
|
||||
<item android:state_pressed="true" android:drawable="@drawable/edit_focus"/>
|
||||
<item android:drawable="@drawable/edit_normal"/>
|
||||
</selector>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 155 B |
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<!--EditBox Confirm Button Name-->
|
||||
<string name="done" translatable="false">完成</string>
|
||||
<string name="next" translatable="false">下一个</string>
|
||||
<string name="search" translatable="false">搜索</string>
|
||||
<string name="go" translatable="false">前往</string>
|
||||
<string name="send" translatable="false">发送</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<color name="none">#00000000</color>
|
||||
<color name="white">#ffffff</color>
|
||||
<color name="white_f7">#f7f7f7</color>
|
||||
<color name="white_f0">#f0f0f0</color>
|
||||
<color name="white_d0">#d0d0d0</color>
|
||||
<color name="white_e0">#e0e0e0</color>
|
||||
<color name="black">#000000</color>
|
||||
<color name="gray3">#333333</color>
|
||||
<color name="gray4">#444444</color>
|
||||
<color name="gray7">#777777</color>
|
||||
<color name="gray9">#999999</color>
|
||||
<color name="red">#ff0000</color>
|
||||
<color name="red1">#e51300</color>
|
||||
<color name="red2">#ff6900</color>
|
||||
<color name="blue">#0000ff</color>
|
||||
<color name="blue1">#009ecf</color>
|
||||
<color name="blue2">#41a9b6</color>
|
||||
<color name="navy">#333b73</color>
|
||||
<color name="navy1">#1d2241</color>
|
||||
<color name="green">#00ff00</color>
|
||||
<color name="yellow">#ffff00</color>
|
||||
<color name="gold">#fff000</color>
|
||||
|
||||
</resources>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<dimen name="title_size">16sp</dimen>
|
||||
|
||||
</resources>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<!--EditBox Confirm Button Title-->
|
||||
<string name="done" translatable="false">Done</string>
|
||||
<string name="next" translatable="false">Next</string>
|
||||
<string name="search" translatable="false">Search</string>
|
||||
<string name="go" translatable="false">Go</string>
|
||||
<string name="send" translatable="false">Send</string>
|
||||
</resources>
|
||||
@@ -0,0 +1,18 @@
|
||||
<resources>
|
||||
|
||||
<style name="notAnimation">
|
||||
<item name="android:activityOpenEnterAnimation">@null</item>
|
||||
<item name="android:activityOpenExitAnimation">@null</item>
|
||||
<item name="android:activityCloseEnterAnimation">@null</item>
|
||||
<item name="android:activityCloseExitAnimation">@null</item>
|
||||
<item name="android:taskOpenEnterAnimation">@null</item>
|
||||
<item name="android:taskOpenExitAnimation">@null</item>
|
||||
<item name="android:taskCloseEnterAnimation">@null</item>
|
||||
<item name="android:taskCloseExitAnimation">@null</item>
|
||||
<item name="android:taskToFrontEnterAnimation">@null</item>
|
||||
<item name="android:taskToFrontExitAnimation">@null</item>
|
||||
<item name="android:taskToBackEnterAnimation">@null</item>
|
||||
<item name="android:taskToBackExitAnimation">@null</item>
|
||||
</style>
|
||||
|
||||
</resources>
|
||||
Reference in New Issue
Block a user