We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi.
I am trying to load an small image into, but scaling does not affect anything.
<com.andremion.music.MusicCoverView android:id="@+id/cover" android:layout_width="match_parent" android:layout_height="wrap_content" android:scaleType="centerCrop" android:src="@drawable/ic_launcher" android:transitionName="@string/transition_name_cover" app:layout_heightPercent="35%" app:shape="circle"/>
The text was updated successfully, but these errors were encountered:
Hi @darkdoctor This library overrides the scale type: https://github.com/andremion/Music-Cover-View/blob/master/library/src/main/java/com/andremion/music/MusicCoverView.java#L307 During transition the scale will be ScaleType.CENTER_INSIDE when it's a circle or ScaleType.CENTER_CROP when it's a rectangle.
ScaleType.CENTER_INSIDE
ScaleType.CENTER_CROP
Sorry, something went wrong.
No branches or pull requests
Hi.
I am trying to load an small image into, but scaling does not affect anything.
The text was updated successfully, but these errors were encountered: