mirror of https://github.com/beemdevelopment/Aegis
Added selection indicator in icon slot (#344)
Changed selection color for black theme Changed indicator color to black secondary Fix indicator flickering when scrolling Applied patch Fix unsharp selection icon Add selection indicators to small and compact viewpull/368/head
parent
8c0ba2dd1b
commit
7ce74d378f
@ -0,0 +1,11 @@
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="150">
|
||||
|
||||
<scale
|
||||
android:fromXScale="0"
|
||||
android:fromYScale="0"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
android:toXScale="100%"
|
||||
android:toYScale="100%" />
|
||||
</set>
|
@ -0,0 +1,11 @@
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:duration="150">
|
||||
|
||||
<scale
|
||||
android:fromXScale="100%"
|
||||
android:fromYScale="100%"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
android:toXScale="0"
|
||||
android:toYScale="0" />
|
||||
</set>
|
@ -0,0 +1,12 @@
|
||||
<vector android:height="60dp" android:tint="#F7F7F7"
|
||||
android:viewportHeight="24.0" android:viewportWidth="24.0"
|
||||
android:width="60dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<group
|
||||
android:scaleX="0.5"
|
||||
android:scaleY="0.5"
|
||||
android:pivotX="12"
|
||||
android:pivotY="12"
|
||||
>
|
||||
<path android:fillColor="#FF000000" android:pathData="M9,16.17L4.83,12l-1.42,1.41L9,19 21,7l-1.41,-1.41z"/>
|
||||
</group>
|
||||
</vector>
|
Loading…
Reference in New Issue