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:
parent
a538517900
commit
84964dd5e5
2 changed files with 18 additions and 0 deletions
9
app/src/main/res/drawable/ic_circle_blue_36dp.xml
Normal file
9
app/src/main/res/drawable/ic_circle_blue_36dp.xml
Normal 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>
|
9
app/src/main/res/drawable/ic_circle_grey_36dp.xml
Normal file
9
app/src/main/res/drawable/ic_circle_grey_36dp.xml
Normal 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>
|
Loading…
Reference in a new issue