renamed webp files with prefix ic_ since these are icons for the trackers

This commit is contained in:
Carlos 2020-03-31 13:51:14 -04:00
parent 1176c7a758
commit af45fa4a20
11 changed files with 6 additions and 6 deletions

View File

@ -32,7 +32,7 @@ class Anilist(private val context: Context, id: Int) : TrackService(id) {
}
}
override fun getLogo() = R.drawable.tracker_anilist
override fun getLogo() = R.drawable.ic_tracker_anilist
override fun getLogoColor() = Color.rgb(18, 25, 35)

View File

@ -68,7 +68,7 @@ class Bangumi(private val context: Context, id: Int) : TrackService(id) {
return track
}
override fun getLogo() = R.drawable.tracker_bangumi
override fun getLogo() = R.drawable.ic_tracker_bangumi
override fun getLogoColor() = Color.rgb(240, 145, 153)

View File

@ -33,7 +33,7 @@ class Kitsu(private val context: Context, id: Int) : TrackService(id) {
private val api by lazy { KitsuApi(client, interceptor) }
override fun getLogo(): Int {
return R.drawable.tracker_kitsu
return R.drawable.ic_tracker_kitsu
}
override fun getLogoColor(): Int {

View File

@ -17,7 +17,7 @@ class MyAnimeList(private val context: Context, id: Int) : TrackService(id) {
override val name = "MyAnimeList"
override fun getLogo() = R.drawable.tracker_mal
override fun getLogo() = R.drawable.ic_tracker_mal
override fun getLogoColor() = Color.rgb(46, 81, 162)

View File

@ -19,7 +19,7 @@ class Shikimori(private val context: Context, id: Int) : TrackService(id) {
private val api by lazy { ShikimoriApi(client, interceptor) }
override fun getLogo() = R.drawable.tracker_shikimori
override fun getLogo() = R.drawable.ic_tracker_shikimori
override fun getLogoColor() = Color.rgb(40, 40, 40)

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 8.5 KiB

After

Width:  |  Height:  |  Size: 8.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -34,7 +34,7 @@
android:contentDescription="@string/tracking"
android:layout_height="wrap_content"
android:layout_gravity="center"
tools:src="@drawable/tracker_mal" />
tools:src="@drawable/ic_tracker_mal" />
<ProgressBar
android:id="@+id/progress"