diff options
author | Danesh M <daneshm90@gmail.com> | 2015-01-23 18:59:21 -0800 |
---|---|---|
committer | Danesh M <daneshm90@gmail.com> | 2015-12-10 15:46:36 -0800 |
commit | d37c80a8844445ed6ae4952af2c8fa893c4dc5b6 (patch) | |
tree | d2b97ca2f25bd5e554fe83ca6ce5f809e674642e /packages/SystemUI/res/anim | |
parent | e799f3d7062eda84e4acf5a4c970b09c6cec6b66 (diff) | |
download | frameworks_base-d37c80a8844445ed6ae4952af2c8fa893c4dc5b6.zip frameworks_base-d37c80a8844445ed6ae4952af2c8fa893c4dc5b6.tar.gz frameworks_base-d37c80a8844445ed6ae4952af2c8fa893c4dc5b6.tar.bz2 |
SystemUI : Add screen timeout tile
Change-Id: If4f9e86ea25f92f435fd1d443cbe0b23ef4c1fb4
Diffstat (limited to 'packages/SystemUI/res/anim')
8 files changed, 56 insertions, 0 deletions
diff --git a/packages/SystemUI/res/anim/ic_qs_screen_timeout_longtomed.xml b/packages/SystemUI/res/anim/ic_qs_screen_timeout_longtomed.xml new file mode 100644 index 0000000..1479734 --- /dev/null +++ b/packages/SystemUI/res/anim/ic_qs_screen_timeout_longtomed.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + +android:duration="250" +android:propertyName="rotation" +android:valueFrom="-180" +android:valueTo="-90"/>
\ No newline at end of file diff --git a/packages/SystemUI/res/anim/ic_qs_screen_timeout_longtoshort.xml b/packages/SystemUI/res/anim/ic_qs_screen_timeout_longtoshort.xml new file mode 100644 index 0000000..4bc7324 --- /dev/null +++ b/packages/SystemUI/res/anim/ic_qs_screen_timeout_longtoshort.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + +android:duration="400" +android:propertyName="rotation" +android:valueFrom="-180" +android:valueTo="0"/>
\ No newline at end of file diff --git a/packages/SystemUI/res/anim/ic_qs_screen_timeout_medtoshort.xml b/packages/SystemUI/res/anim/ic_qs_screen_timeout_medtoshort.xml new file mode 100644 index 0000000..ea2e135 --- /dev/null +++ b/packages/SystemUI/res/anim/ic_qs_screen_timeout_medtoshort.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + +android:duration="400" +android:propertyName="rotation" +android:valueFrom="-90" +android:valueTo="0"/>
\ No newline at end of file diff --git a/packages/SystemUI/res/anim/ic_qs_screen_timeout_medtoshort_reverse.xml b/packages/SystemUI/res/anim/ic_qs_screen_timeout_medtoshort_reverse.xml new file mode 100644 index 0000000..4b252cb --- /dev/null +++ b/packages/SystemUI/res/anim/ic_qs_screen_timeout_medtoshort_reverse.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + +android:duration="250" +android:propertyName="rotation" +android:valueFrom="-90" +android:valueTo="0"/>
\ No newline at end of file diff --git a/packages/SystemUI/res/anim/ic_qs_screen_timeout_shorttolong.xml b/packages/SystemUI/res/anim/ic_qs_screen_timeout_shorttolong.xml new file mode 100644 index 0000000..72103e4 --- /dev/null +++ b/packages/SystemUI/res/anim/ic_qs_screen_timeout_shorttolong.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + +android:duration="400" +android:propertyName="rotation" +android:valueFrom="0" +android:valueTo="-180"/>
\ No newline at end of file diff --git a/packages/SystemUI/res/anim/ic_qs_screen_timeout_staymed.xml b/packages/SystemUI/res/anim/ic_qs_screen_timeout_staymed.xml new file mode 100644 index 0000000..186179c --- /dev/null +++ b/packages/SystemUI/res/anim/ic_qs_screen_timeout_staymed.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + +android:duration="250" +android:propertyName="rotation" +android:valueFrom="-90" +android:valueTo="-90"/>
\ No newline at end of file diff --git a/packages/SystemUI/res/anim/ic_qs_screen_timeout_tolong.xml b/packages/SystemUI/res/anim/ic_qs_screen_timeout_tolong.xml new file mode 100644 index 0000000..6fa46e9 --- /dev/null +++ b/packages/SystemUI/res/anim/ic_qs_screen_timeout_tolong.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + +android:duration="250" +android:propertyName="rotation" +android:valueFrom="-90" +android:valueTo="-180"/>
\ No newline at end of file diff --git a/packages/SystemUI/res/anim/ic_qs_screen_timeout_tomed.xml b/packages/SystemUI/res/anim/ic_qs_screen_timeout_tomed.xml new file mode 100644 index 0000000..7ee79ba --- /dev/null +++ b/packages/SystemUI/res/anim/ic_qs_screen_timeout_tomed.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + +android:duration="250" +android:propertyName="rotation" +android:valueFrom="0" +android:valueTo="-90"/>
\ No newline at end of file |