Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a24eee43 authored by Roman Birg's avatar Roman Birg
Browse files

SystemUI: animate state in Performance profile



* Asher is awesome

Change-Id: Ie7494ac93d188f71117cfc93c2fa0e1ccc91c7d7
Signed-off-by: default avatarRoman Birg <roman@cyngn.com>
parent 6c3131a1
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
<?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="-225"
        android:valueTo="-135"/>
 No newline at end of file
+6 −0
Original line number Diff line number Diff line
<?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="-135"
        android:valueTo="-45"/>
 No newline at end of file
+6 −0
Original line number Diff line number Diff line
<?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="-45"
        android:valueTo="-225"/>
 No newline at end of file
+0 −16
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="64dp"
    android:height="64dp"
    android:viewportWidth="48"
    android:viewportHeight="48">

    <path
        android:fillColor="#FFFFFF"
        android:pathData="M24,8c8.8,0,16,7.2,16,16s-7.2,16-16,16S8,32.8,8,24S15.2,8,24,8 M24,4
C13,4,4,13,4,24s9,20,20,20s20-9,20-20S35,4,24,4L24,4Z
M14,16c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2s2-0.9,2-2C16,16.9,15.1,16,14,16z
M34,16c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2C36,16.9,35.1,16,34,16z
M26,20.6V12c0-1.1-0.9-2-2-2s-2,0.9-2,2v8.6
c-1.2,0.7-2,2-2,3.4c0,2.2,1.8,4,4,4c2.2,0,4-1.8,4-4C28,22.5,27.2,21.2,26,20.6z" />
</vector>
 No newline at end of file
+9 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<animated-vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:drawable="@drawable/ic_qs_perf_profile_vector">
    
    <target
        android:name="needle"
        android:animation="@anim/ic_qs_perf_profile_toperf"/>

</animated-vector>
 No newline at end of file
Loading