[Album Cover Style] Removed Material Album cover style which was almost similar to Normal Album Style and Fixed Normal Album Style

This commit is contained in:
Prathamesh More 2021-12-28 14:05:36 +05:30
parent 91baedfc70
commit 22451b3cf1
4 changed files with 4 additions and 35 deletions

View file

@ -148,7 +148,6 @@ class AlbumCoverPagerAdapter(
AlbumCoverStyle.Flat -> R.layout.fragment_album_flat_cover
AlbumCoverStyle.Circle -> R.layout.fragment_album_circle_cover
AlbumCoverStyle.Card -> R.layout.fragment_album_card_cover
AlbumCoverStyle.Material -> R.layout.fragment_album_material_cover
AlbumCoverStyle.Full -> R.layout.fragment_album_full_cover
AlbumCoverStyle.FullCard -> R.layout.fragment_album_full_card_cover
}

View file

@ -23,11 +23,10 @@ enum class AlbumCoverStyle(
@DrawableRes val drawableResId: Int,
val id: Int
) {
Card(R.string.card, R.drawable.np_blur_card, 4),
Card(R.string.card, R.drawable.np_blur_card, 3),
Circle(R.string.circular, R.drawable.np_circle, 2),
Flat(R.string.flat, R.drawable.np_flat, 1),
FullCard(R.string.full_card, R.drawable.np_adaptive, 6),
Full(R.string.full, R.drawable.np_full, 5),
Material(R.string.material, R.drawable.np_material, 3),
FullCard(R.string.full_card, R.drawable.np_adaptive, 5),
Full(R.string.full, R.drawable.np_full, 4),
Normal(R.string.normal, R.drawable.np_normal, 0),
}