55
15
app/src/main/res/anim/activity_trans_interpolator.xml
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<decelerateInterpolator android:factor="0.9"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android" />
|
||||
24
app/src/main/res/anim/anim_not_change.xml
Normal file
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<scale
|
||||
android:duration="200"
|
||||
android:fillAfter="false"
|
||||
android:fromXScale="1.0"
|
||||
android:fromYScale="1.0"
|
||||
android:pivotX="50.0%"
|
||||
android:pivotY="50.0%"
|
||||
android:toXScale="1.0"
|
||||
android:toYScale="1.0" />
|
||||
</set>
|
||||
5
app/src/main/res/anim/buttomtip_in.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:duration="400" android:fillAfter="false" android:fromYDelta="54.0" android:toYDelta="0.0" />
|
||||
</set>
|
||||
5
app/src/main/res/anim/buttomtip_out.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:duration="400" android:fillAfter="false" android:fromYDelta="0.0" android:toYDelta="54.0" />
|
||||
</set>
|
||||
6
app/src/main/res/anim/ccp_push_up_in.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:duration="300" android:fromYDelta="100.0%p" android:toYDelta="0.0" />
|
||||
<alpha android:duration="300" android:fromAlpha="0.0" android:toAlpha="1.0" />
|
||||
</set>
|
||||
5
app/src/main/res/anim/ccp_switch_down_out.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:duration="350" android:fromYDelta="0.0" android:toYDelta="100.0%p" />
|
||||
</set>
|
||||
21
app/src/main/res/anim/common_slide_left_in.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shareInterpolator="false">
|
||||
<translate
|
||||
android:duration="@integer/activity_trans_duration"
|
||||
android:fromXDelta="-100.0%p"
|
||||
android:interpolator="@anim/activity_trans_interpolator"
|
||||
android:toXDelta="0.0" />
|
||||
</set>
|
||||
17
app/src/main/res/anim/common_slide_left_out.xml
Normal file
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<set android:shareInterpolator="false"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:interpolator="@anim/activity_trans_interpolator" android:duration="@integer/activity_trans_duration" android:fromXDelta="0.0" android:toXDelta="-100.0%p" />
|
||||
</set>
|
||||
17
app/src/main/res/anim/common_slide_right_in.xml
Normal file
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<set android:shareInterpolator="false"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:interpolator="@anim/activity_trans_interpolator" android:duration="@integer/activity_trans_duration" android:fromXDelta="100.0%p" android:toXDelta="0.0" />
|
||||
</set>
|
||||
17
app/src/main/res/anim/common_slide_right_out.xml
Normal file
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<set android:shareInterpolator="false"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:interpolator="@anim/activity_trans_interpolator" android:duration="@integer/activity_trans_duration" android:fromXDelta="0.0" android:toXDelta="100.0%p" />
|
||||
</set>
|
||||
7
app/src/main/res/anim/dcloud_unimp_close_exit.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate
|
||||
android:fromXDelta="0%"
|
||||
android:toXDelta="-100%"
|
||||
android:duration="500"/>
|
||||
</set>
|
||||
7
app/src/main/res/anim/dcloud_unimp_host_close_exit.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate
|
||||
android:fromXDelta="0%"
|
||||
android:toXDelta="-100%"
|
||||
android:duration="500"/>
|
||||
</set>
|
||||
7
app/src/main/res/anim/dcloud_unimp_host_open_enter.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate
|
||||
android:fromXDelta="100%"
|
||||
android:toXDelta="0%"
|
||||
android:duration="500"/>
|
||||
</set>
|
||||
7
app/src/main/res/anim/dcloud_unimp_open_enter.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate
|
||||
android:fromXDelta="100%"
|
||||
android:toXDelta="0%"
|
||||
android:duration="500"/>
|
||||
</set>
|
||||
8
app/src/main/res/anim/fade_in_property_anim.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<objectAnimator
|
||||
android:duration="300"
|
||||
android:valueFrom="0.0"
|
||||
android:valueTo="1.0"
|
||||
android:valueType="intType"/>
|
||||
</set>
|
||||
11
app/src/main/res/anim/fragment_slide_left_in.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<objectAnimator
|
||||
android:duration="500"
|
||||
android:propertyName="fractionX"
|
||||
android:valueFrom="-1"
|
||||
android:valueTo="0"
|
||||
android:valueType="floatType" />
|
||||
|
||||
</set>
|
||||
11
app/src/main/res/anim/fragment_slide_left_out.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<objectAnimator
|
||||
android:duration="500"
|
||||
android:propertyName="fractionX"
|
||||
android:valueFrom="0"
|
||||
android:valueTo="-1"
|
||||
android:valueType="floatType" />
|
||||
|
||||
</set>
|
||||
11
app/src/main/res/anim/fragment_slide_right_in.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<objectAnimator
|
||||
android:duration="500"
|
||||
android:propertyName="fractionX"
|
||||
android:valueFrom="1"
|
||||
android:valueTo="0"
|
||||
android:valueType="floatType" />
|
||||
|
||||
</set>
|
||||
11
app/src/main/res/anim/fragment_slide_right_out.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<objectAnimator
|
||||
android:duration="500"
|
||||
android:propertyName="fractionX"
|
||||
android:valueFrom="0"
|
||||
android:valueTo="1"
|
||||
android:valueType="floatType" />
|
||||
|
||||
</set>
|
||||
15
app/src/main/res/anim/loading.xml
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<rotate android:interpolator="@android:anim/linear_interpolator" android:duration="600" android:fromDegrees="0.0" android:toDegrees="359.0" android:pivotX="50.0%" android:pivotY="50.0%" android:repeatCount="infinite"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android" />
|
||||
10
app/src/main/res/anim/loading_progressbar.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:drawable="@drawable/ic_loading"
|
||||
android:fromDegrees="0"
|
||||
android:toDegrees="360"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
android:duration="700"
|
||||
/>
|
||||
<!-- xsearch_loading ic_loading -->
|
||||
13
app/src/main/res/anim/polyv_collapse.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<scale
|
||||
android:duration="120"
|
||||
android:fromXScale="1"
|
||||
android:fromYScale="1"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="0%"
|
||||
android:toXScale="1"
|
||||
android:toYScale="0" />
|
||||
|
||||
</set>
|
||||
13
app/src/main/res/anim/polyv_expand.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<scale
|
||||
android:duration="200"
|
||||
android:fromXScale="1"
|
||||
android:fromYScale="0"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="0%"
|
||||
android:toXScale="1"
|
||||
android:toYScale="1" />
|
||||
|
||||
</set>
|
||||
28
app/src/main/res/anim/pop_in.xml
Normal file
@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<scale
|
||||
android:duration="200"
|
||||
android:fillAfter="false"
|
||||
android:fromXScale="0.8"
|
||||
android:fromYScale="0.8"
|
||||
android:pivotX="50.0%"
|
||||
android:pivotY="50.0%"
|
||||
android:toXScale="1.0"
|
||||
android:toYScale="1.0" />
|
||||
<alpha
|
||||
android:duration="200"
|
||||
android:fillAfter="false"
|
||||
android:fromAlpha="0.0"
|
||||
android:toAlpha="1.0" />
|
||||
</set>
|
||||
18
app/src/main/res/anim/pop_out.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<scale android:duration="200" android:pivotX="50.0%" android:pivotY="50.0%" android:fillAfter="false" android:fromXScale="1.0" android:toXScale="0.8" android:fromYScale="1.0" android:toYScale="0.8" />
|
||||
<alpha android:duration="200" android:fillAfter="false" android:fromAlpha="1.0" android:toAlpha="0.0" />
|
||||
</set>
|
||||
10
app/src/main/res/anim/property_anim.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<rotate
|
||||
android:duration="1200"
|
||||
android:fromDegrees="0.0"
|
||||
android:toDegrees="359.0"
|
||||
android:pivotX="0.5%"
|
||||
android:pivotY="0.5%" />
|
||||
</set>
|
||||
29
app/src/main/res/anim/push_down_out.xml
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.cloopen.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<scale
|
||||
android:duration="@android:integer/config_shortAnimTime"
|
||||
android:fromXScale="1.0"
|
||||
android:fromYScale="0.1"
|
||||
android:pivotX="0.0%"
|
||||
android:pivotY="0.0%"
|
||||
android:toXScale="1.0"
|
||||
android:toYScale="1.0" />
|
||||
<alpha
|
||||
android:duration="@android:integer/config_shortAnimTime"
|
||||
android:fromAlpha="0.0"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:toAlpha="1.0" />
|
||||
</set>
|
||||
5
app/src/main/res/anim/push_empty_out.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<alpha android:duration="300" android:fromAlpha="1.0" android:toAlpha="1.0" />
|
||||
</set>
|
||||
21
app/src/main/res/anim/slide_in_from_bottom.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2009 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="@android:integer/config_longAnimTime"
|
||||
android:fromYDelta="100%p"
|
||||
android:toYDelta="0" />
|
||||
21
app/src/main/res/anim/slide_in_from_top.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2009 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="@android:integer/config_longAnimTime"
|
||||
android:fromYDelta="-100%p"
|
||||
android:toYDelta="0" />
|
||||
5
app/src/main/res/anim/slide_left_in.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:duration="300" android:fromXDelta="-100.0%p" android:toXDelta="0.0" />
|
||||
</set>
|
||||
5
app/src/main/res/anim/slide_left_out.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:duration="300" android:fromXDelta="0.0" android:toXDelta="-100.0%p" />
|
||||
</set>
|
||||
21
app/src/main/res/anim/slide_out_to_bottom.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2009 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="@android:integer/config_longAnimTime"
|
||||
android:fromYDelta="0"
|
||||
android:toYDelta="100%p" />
|
||||
21
app/src/main/res/anim/slide_out_to_top.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2009 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="@android:integer/config_longAnimTime"
|
||||
android:fromYDelta="0"
|
||||
android:toYDelta="-100%p" />
|
||||
5
app/src/main/res/anim/slide_right_in.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:duration="300" android:fromXDelta="100.0%p" android:toXDelta="0.0" />
|
||||
</set>
|
||||
5
app/src/main/res/anim/slide_right_out.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:duration="300" android:fromXDelta="0.0" android:toXDelta="100.0%p" />
|
||||
</set>
|
||||
4
app/src/main/res/anim/timepicker_anim_enter_bottom.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:fromYDelta="100%" android:toYDelta="0" android:duration="500" />
|
||||
</set>
|
||||
4
app/src/main/res/anim/timepicker_anim_exit_bottom.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:fromYDelta="0" android:toYDelta="100%" android:duration="500" />
|
||||
</set>
|
||||
4
app/src/main/res/anim/timepicker_anim_exit_right.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:fromXDelta="0" android:toXDelta="100%" android:duration="500" />
|
||||
</set>
|
||||
10
app/src/main/res/anim/umeng_socialize_fade_in.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator" >
|
||||
|
||||
<alpha
|
||||
android:duration="300"
|
||||
android:fromAlpha="0.0"
|
||||
android:toAlpha="1.0" />
|
||||
|
||||
</set>
|
||||
10
app/src/main/res/anim/umeng_socialize_fade_out.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator" >
|
||||
|
||||
<alpha
|
||||
android:duration="300"
|
||||
android:fromAlpha="1.0"
|
||||
android:toAlpha="0.0" />
|
||||
|
||||
</set>
|
||||
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shareInterpolator="false">
|
||||
<translate
|
||||
android:duration="300"
|
||||
android:fromXDelta="0.0%"
|
||||
android:fromYDelta="100.0%"
|
||||
android:toXDelta="0.0%"
|
||||
android:toYDelta="0.0%" />
|
||||
|
||||
<alpha android:duration="350"
|
||||
android:fromAlpha="0.5"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:toAlpha="1.0"
|
||||
/>
|
||||
|
||||
</set>
|
||||
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<alpha
|
||||
android:duration="400"
|
||||
android:fromAlpha="1.0"
|
||||
android:toAlpha="0.0" />
|
||||
|
||||
</set>
|
||||
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="300"
|
||||
android:fromXDelta="0.0%"
|
||||
android:fromYDelta="100.0%"
|
||||
android:toXDelta="0.0%"
|
||||
android:toYDelta="0.0%" />
|
||||
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="300"
|
||||
android:fromXDelta="0.0%"
|
||||
android:fromYDelta="0.0%"
|
||||
android:toXDelta="0.0%"
|
||||
android:toYDelta="100.0%" />
|
||||
10
app/src/main/res/anim/update_loading_progressbar_anim.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:drawable="@drawable/ic_loading"
|
||||
android:fromDegrees="0"
|
||||
android:toDegrees="360"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
android:duration="700"
|
||||
/>
|
||||
<!-- xsearch_loading ic_loading -->
|
||||
5
app/src/main/res/anim/video_push_down_out.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:duration="300" android:fromYDelta="0.0" android:toYDelta="100.0%p" />
|
||||
</set>
|
||||
5
app/src/main/res/anim/video_push_up_in.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:duration="300" android:fromYDelta="100.0%p" android:toYDelta="0.0" />
|
||||
</set>
|
||||
21
app/src/main/res/color/abc_search_url_text_holo.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2013 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="true" android:color="@color/abc_search_url_text_pressed"/>
|
||||
<item android:state_selected="true" android:color="@color/abc_search_url_text_selected"/>
|
||||
<item android:color="@color/abc_search_url_text_normal"/> <!-- not selected -->
|
||||
</selector>
|
||||
18
app/src/main/res/color/actionbar_text_white_selector.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="false" android:color="@color/white_color_disable" />
|
||||
<item android:color="@color/action_bar_tittle_color" />
|
||||
</selector>
|
||||
12
app/src/main/res/color/btn_black_theme_selector.xml
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_focused="false"
|
||||
android:state_enabled="true"
|
||||
android:state_pressed="false"
|
||||
android:color="#333333" />
|
||||
<item android:state_enabled="false" android:color="#333333" />
|
||||
<item android:state_pressed="true" android:color="@color/doctor_theme" />
|
||||
<item android:state_focused="true" android:color="@color/doctor_theme" />
|
||||
|
||||
</selector>
|
||||
|
||||
20
app/src/main/res/color/btn_dialog.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_window_focused="false" android:state_enabled="false" android:color="@color/text_content" />
|
||||
<item android:state_enabled="false" android:color="@color/text_desc" />
|
||||
<item android:state_selected="true" android:color="@color/wheel_timebtn_pre" />
|
||||
<item android:color="@color/btn_title" />
|
||||
</selector>
|
||||
11
app/src/main/res/color/btn_text_selector.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_focused="false"
|
||||
android:state_enabled="true"
|
||||
android:state_pressed="false"
|
||||
android:color="@color/c999999" />
|
||||
<item android:state_enabled="false" android:color="@color/c999999" />
|
||||
<item android:state_pressed="true" android:color="@color/white" />
|
||||
<item android:state_focused="true" android:color="@color/white" />
|
||||
|
||||
</selector>
|
||||
8
app/src/main/res/color/ccp_button_text.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="false" android:color="#ff808080" />
|
||||
<item android:state_pressed="true" android:color="#ffffffff" />
|
||||
<item android:state_selected="true" android:color="#ffffffff" />
|
||||
<item android:color="#ff202020" />
|
||||
</selector>
|
||||
5
app/src/main/res/color/ccp_list_textcolor_three.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="@color/service_normal_color" />
|
||||
</selector>
|
||||
19
app/src/main/res/color/ccp_list_textcolor_time.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_selected="true" android:state_pressed="true" android:color="@color/white" />
|
||||
<item android:state_selected="false" android:state_pressed="true" android:color="@color/white" />
|
||||
<item android:state_selected="true" android:color="#ff4271ad" />
|
||||
<item android:color="#ff4271ad" />
|
||||
</selector>
|
||||
18
app/src/main/res/color/ccp_pref_summary.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="false" android:color="#ff888888" />
|
||||
<item android:color="#ff888888" />
|
||||
</selector>
|
||||
18
app/src/main/res/color/ccp_pref_title.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="false" android:color="#ff707070" />
|
||||
<item android:color="#ff000000" />
|
||||
</selector>
|
||||
6
app/src/main/res/color/ccp_style_one_btn_text.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="false" android:color="#ff497000" />
|
||||
<item android:color="#ffffffff" />
|
||||
</selector>
|
||||
6
app/src/main/res/color/ccp_style_two_btn_text.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="false" android:color="#ff676767" />
|
||||
<item android:color="#ff000000" />
|
||||
</selector>
|
||||
21
app/src/main/res/color/ccp_title_btn_text.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.cloopen.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="false" android:color="@color/lightgrey" />
|
||||
<item android:state_pressed="true" android:color="@color/lightgrey" />
|
||||
<item android:state_selected="true" android:color="@color/lightgrey" />
|
||||
<item android:state_focused="true" android:color="@color/lightgrey" />
|
||||
<item android:color="@color/white" />
|
||||
</selector>
|
||||
18
app/src/main/res/color/common_top_bar_right_string_color.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="true" android:color="@color/gray" />
|
||||
<item android:color="@color/edit_save_btn_text_color" />
|
||||
</selector>
|
||||
5
app/src/main/res/color/drug_check.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:state_checked="true" android:color="@color/white"></item>
|
||||
<item android:state_checked="false" android:color="@color/patient_theme"></item>
|
||||
</selector>
|
||||
7
app/src/main/res/color/ec_grey_btn_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">
|
||||
<item android:state_enabled="false" android:color="@color/ec_normal_text_color_disable" />
|
||||
<item android:state_pressed="true" android:color="@color/black" />
|
||||
<item android:color="@color/normal_text_color" />
|
||||
</selector>
|
||||
20
app/src/main/res/color/edit_save_btn_text_color.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="true" android:color="@color/edit_save_btn_color_click" />
|
||||
<item android:state_focused="true" android:color="@color/edit_save_btn_color_click" />
|
||||
<item android:state_enabled="false" android:color="@color/edit_save_btn_color_disable" />
|
||||
<item android:color="@color/white" />
|
||||
</selector>
|
||||
7
app/src/main/res/color/grey_btn_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">
|
||||
<item android:state_enabled="false" android:color="@color/normal_text_color_disable" />
|
||||
<item android:state_pressed="true" android:color="@color/black" />
|
||||
<item android:color="@color/normal_text_color" />
|
||||
</selector>
|
||||
18
app/src/main/res/color/launcher_tab_text_selector.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="true" android:color="@color/launcher_tab_text_color_press" />
|
||||
<item android:color="@color/launcher_tab_text_color" />
|
||||
</selector>
|
||||
18
app/src/main/res/color/login_btn_text.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="false" android:color="#ff8aeb93" />
|
||||
<item android:color="#ffffffff" />
|
||||
</selector>
|
||||
19
app/src/main/res/color/operation_btn_color_selector.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_selected="true" android:state_pressed="true" android:color="@color/white" />
|
||||
<item android:state_selected="false" android:state_pressed="true" android:color="@color/white" />
|
||||
<item android:state_selected="true" android:color="@color/ccp_green" />
|
||||
<item android:color="@color/ccp_green" />
|
||||
</selector>
|
||||
5
app/src/main/res/color/polyv_bit_text_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:state_selected="true" android:color="@color/center_view_color_blue"/>
|
||||
<item android:color="@color/top_layout_color_white"/>
|
||||
</selector>
|
||||
5
app/src/main/res/color/polyv_left_text_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:state_selected="true" android:color="@color/left_text_color_blue"/>
|
||||
<item android:color="@color/top_layout_color_white"/>
|
||||
</selector>
|
||||
5
app/src/main/res/color/polyv_play_bt_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:state_pressed="true" android:color="@color/center_bottom_text_color_red"/>
|
||||
<item android:color="@color/top_layout_color_white"/>
|
||||
</selector>
|
||||
5
app/src/main/res/color/polyv_status_text_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="@color/center_bottom_text_color_red" android:state_selected="true"/>
|
||||
<item android:color="@color/center_right_text_color_green"/>
|
||||
</selector>
|
||||
7
app/src/main/res/color/polyv_tab_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">
|
||||
|
||||
<item android:state_selected="true" android:color="@color/doctor_theme"/>
|
||||
<item android:state_selected="false" android:color="@color/c999999"/>
|
||||
|
||||
</selector>
|
||||
7
app/src/main/res/color/polyv_tab_text_color_big.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_selected="true" android:color="@color/doctor_theme"/>
|
||||
<item android:state_selected="false" android:color="@color/c333333"/>
|
||||
|
||||
</selector>
|
||||
5
app/src/main/res/color/polyv_tv_black_blue_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:color="#31ADFE" android:state_selected="true" />
|
||||
<item android:color="#000000" />
|
||||
</selector>
|
||||
5
app/src/main/res/color/polyv_tv_white_blue_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:color="#31ADFE" android:state_selected="true" />
|
||||
<item android:color="#ffffff" />
|
||||
</selector>
|
||||
26
app/src/main/res/color/primary_text_light.xml
Normal file
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="false" android:color="@color/bright_foreground_light_disabled"/>
|
||||
<item android:state_window_focused="false" android:color="@color/bright_foreground_light"/>
|
||||
<item android:state_pressed="true" android:color="@color/bright_foreground_light"/>
|
||||
<item android:state_selected="true" android:color="@color/bright_foreground_light"/>
|
||||
<item android:state_activated="true" android:color="@color/bright_foreground_light"/>
|
||||
<item android:color="@color/bright_foreground_light"/> <!-- not selected -->
|
||||
|
||||
</selector>
|
||||
|
||||
7
app/src/main/res/color/radio_col.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:color="@color/white"/>
|
||||
<item android:state_selected="true" android:color="@color/white"/>
|
||||
<item android:state_pressed="false" android:color="@color/black"/>
|
||||
<item android:state_checked="false" android:color="@color/black"/>
|
||||
</selector>
|
||||
5
app/src/main/res/color/selector_c9_themecolor.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:state_checked="false" android:color="@color/c999999" />
|
||||
<item android:state_checked="true" android:color="@color/doctor_theme" />
|
||||
</selector>
|
||||
7
app/src/main/res/color/selector_news_check_text_bg.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:color="@color/top_title"></item>
|
||||
<item android:state_checked="false" android:color="@color/tab_text_nor"></item>
|
||||
|
||||
</selector>
|
||||
5
app/src/main/res/color/selector_paitentcolor.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:state_checked="false" android:color="@color/c999999" />
|
||||
<item android:state_checked="true" android:color="@color/doctor_theme" />
|
||||
</selector>
|
||||
20
app/src/main/res/color/sub_text_dial.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.cloopen.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_selected="true" android:color="@color/white" />
|
||||
<item android:state_pressed="true" android:color="@color/white" />
|
||||
<item android:state_focused="true" android:color="@color/white" />
|
||||
<item android:color="@color/darkGrey" />
|
||||
</selector>
|
||||
20
app/src/main/res/color/system_msg_nikename_color.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.cloopen.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_selected="true" android:color="#ffffffff" />
|
||||
<item android:state_focused="true" android:color="#ffffffff" />
|
||||
<item android:state_pressed="true" android:color="#ffffffff" />
|
||||
<item android:color="#ff333333" />
|
||||
</selector>
|
||||
6
app/src/main/res/color/tab_text_nor_selector.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<item android:color="@color/top_title" android:state_checked="true"></item>
|
||||
<item android:color="@color/tab_text_nor" android:state_checked="false"></item>
|
||||
</selector>
|
||||
20
app/src/main/res/color/voice_conv_textcolor.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.cloopen.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_selected="true" android:state_pressed="true" android:color="@android:color/white" />
|
||||
<item android:state_selected="false" android:state_pressed="true" android:color="@android:color/white" />
|
||||
<item android:state_selected="true" android:color="@android:color/black" />
|
||||
<item android:state_selected="false" android:color="@android:color/black" />
|
||||
</selector>
|
||||
20
app/src/main/res/color/voice_conv_time_textcolor.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.cloopen.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_selected="true" android:state_pressed="true" android:color="@android:color/white" />
|
||||
<item android:state_selected="false" android:state_pressed="true" android:color="@android:color/white" />
|
||||
<item android:state_selected="true" android:color="#ff888888" />
|
||||
<item android:state_selected="false" android:color="#ff888888" />
|
||||
</selector>
|
||||
18
app/src/main/res/color/voice_pref_title.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.cloopen.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="false" android:color="#ff707070" />
|
||||
<item android:color="#ff000000" />
|
||||
</selector>
|
||||
18
app/src/main/res/color/white_color_selector.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (c) 2013 The CCP project authors. All Rights Reserved.
|
||||
|
||||
Use of this source code is governed by a Beijing Speedtong Information Technology Co.,Ltd license
|
||||
that can be found in the LICENSE file in the root of the web site.
|
||||
|
||||
http://www.yuntongxun.com
|
||||
|
||||
An additional intellectual property rights grant can be found
|
||||
in the file PATENTS. All contributing project authors may
|
||||
be found in the AUTHORS file in the root of the source tree.
|
||||
-->
|
||||
<selector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="false" android:color="@color/white_color_disable" />
|
||||
<item android:color="@color/white" />
|
||||
</selector>
|
||||
16
app/src/main/res/drawable-hdpi/activity_photoalbum.xml
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:orientation="vertical" >
|
||||
|
||||
<GridView
|
||||
android:id="@+id/album_gridview"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:horizontalSpacing="2dip"
|
||||
android:numColumns="2"
|
||||
android:verticalSpacing="2dip" />
|
||||
|
||||
</LinearLayout>
|
||||
@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:orientation="vertical" >
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_shuju"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:orientation="vertical" >
|
||||
<GridView
|
||||
android:id="@+id/photo_gridview"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:layout_above="@+id/ll_bottom"
|
||||
android:layout_alignParentTop="true"
|
||||
android:gravity="center"
|
||||
android:listSelector="#50000000"
|
||||
android:numColumns="3"
|
||||
android:scrollbars="none" />
|
||||
<RelativeLayout
|
||||
android:id="@+id/ll_bottom"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="65dip"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:background="#292929"
|
||||
android:gravity="center_vertical">
|
||||
|
||||
<HorizontalScrollView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="60dip"
|
||||
android:layout_marginRight="5dip"
|
||||
android:layout_toLeftOf="@+id/btn_sure"
|
||||
android:scrollbars="none" >
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal" >
|
||||
|
||||
<com.why.photoaibum.entities.MyGridView
|
||||
android:id="@+id/gl_bottom"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:scrollbars="none" />
|
||||
</LinearLayout>
|
||||
</HorizontalScrollView>
|
||||
|
||||
<Button
|
||||
android:id="@+id/btn_sure"
|
||||
android:layout_width="60dip"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginRight="5dip"
|
||||
android:background="@drawable/ssp_queding_btn"
|
||||
android:text="确定"
|
||||
android:textColor="#f4f4f4"
|
||||
android:textSize="13sp"
|
||||
android:gravity="center"/>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
BIN
app/src/main/res/drawable-hdpi/add_contact.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
app/src/main/res/drawable-hdpi/add_contact_on.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
app/src/main/res/drawable-hdpi/add_drawle.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
app/src/main/res/drawable-hdpi/add_photo_normal.png
Normal file
|
After Width: | Height: | Size: 9.8 KiB |
BIN
app/src/main/res/drawable-hdpi/addn.png
Normal file
|
After Width: | Height: | Size: 646 B |
BIN
app/src/main/res/drawable-hdpi/amp1.png
Normal file
|
After Width: | Height: | Size: 242 B |
BIN
app/src/main/res/drawable-hdpi/amp2.png
Normal file
|
After Width: | Height: | Size: 340 B |
BIN
app/src/main/res/drawable-hdpi/amp3.png
Normal file
|
After Width: | Height: | Size: 441 B |
BIN
app/src/main/res/drawable-hdpi/amp4.png
Normal file
|
After Width: | Height: | Size: 531 B |