Insert the circle as a vector file.

ic_circle_blue and ic_circle_grey have different colors for the case that the circle is selected once and once in the non-selected state.
This commit is contained in:
ErikWaegerle 2020-07-22 01:30:45 +02:00
parent a538517900
commit 84964dd5e5
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="35dp"
android:height="35dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="?attr/rankingCircleSelected"
android:pathData="M12,12m-10,0a10,10 0,1 1,20 0a10,10 0,1 1,-20 0"/>
</vector>

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="35dp"
android:height="35dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="?attr/rankingCircleNotSelected"
android:pathData="M12,12m-10,0a10,10 0,1 1,20 0a10,10 0,1 1,-20 0"/>
</vector>