Rounded corners and shadow using Glide 3.7

Multi tool use
up vote
0
down vote
favorite
I am using Glide- implementation 'com.github.bumptech.glide:glide:3.7.0'
. And I am trying to get rounded corners for the ImageView
as well as some shadows.
My ImageView XML
:
<ImageView
android:id="@+id/song_album_cover"
android:layout_width="64dp"
android:layout_height="68dp"
android:layout_marginStart="8dp"
android:layout_marginTop="6dp"
android:elevation="18dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/no_cover_art"
android:background="@drawable/artist_cover_image"/>
How I am using Glide
to set the image:
Glide.with(getActivity())
.load(Common.SONG_URL_BASE + "/" + audioTitle + "/thumbnail.png")
.asBitmap()
.toBytes()
.into(new SimpleTarget<byte>(250, 250)
@Override
public void onResourceReady(byte data, GlideAnimation anim)
Bitmap bmp = BitmapFactory.decodeByteArray(data, 0, data.length);
holder.albumCoverArt.setImageBitmap(bmp);
);
And finally the android:background="@drawable/artist_cover_image"
I tried to use to set the corners and the shadow:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#42000000" />
<corners android:radius="30dp" />
</shape>
Chaning to Glide 4
is not possible at the moment. Is there a way to get rounded corners and shadow with Glide 3
?

add a comment |
up vote
0
down vote
favorite
I am using Glide- implementation 'com.github.bumptech.glide:glide:3.7.0'
. And I am trying to get rounded corners for the ImageView
as well as some shadows.
My ImageView XML
:
<ImageView
android:id="@+id/song_album_cover"
android:layout_width="64dp"
android:layout_height="68dp"
android:layout_marginStart="8dp"
android:layout_marginTop="6dp"
android:elevation="18dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/no_cover_art"
android:background="@drawable/artist_cover_image"/>
How I am using Glide
to set the image:
Glide.with(getActivity())
.load(Common.SONG_URL_BASE + "/" + audioTitle + "/thumbnail.png")
.asBitmap()
.toBytes()
.into(new SimpleTarget<byte>(250, 250)
@Override
public void onResourceReady(byte data, GlideAnimation anim)
Bitmap bmp = BitmapFactory.decodeByteArray(data, 0, data.length);
holder.albumCoverArt.setImageBitmap(bmp);
);
And finally the android:background="@drawable/artist_cover_image"
I tried to use to set the corners and the shadow:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#42000000" />
<corners android:radius="30dp" />
</shape>
Chaning to Glide 4
is not possible at the moment. Is there a way to get rounded corners and shadow with Glide 3
?

add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am using Glide- implementation 'com.github.bumptech.glide:glide:3.7.0'
. And I am trying to get rounded corners for the ImageView
as well as some shadows.
My ImageView XML
:
<ImageView
android:id="@+id/song_album_cover"
android:layout_width="64dp"
android:layout_height="68dp"
android:layout_marginStart="8dp"
android:layout_marginTop="6dp"
android:elevation="18dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/no_cover_art"
android:background="@drawable/artist_cover_image"/>
How I am using Glide
to set the image:
Glide.with(getActivity())
.load(Common.SONG_URL_BASE + "/" + audioTitle + "/thumbnail.png")
.asBitmap()
.toBytes()
.into(new SimpleTarget<byte>(250, 250)
@Override
public void onResourceReady(byte data, GlideAnimation anim)
Bitmap bmp = BitmapFactory.decodeByteArray(data, 0, data.length);
holder.albumCoverArt.setImageBitmap(bmp);
);
And finally the android:background="@drawable/artist_cover_image"
I tried to use to set the corners and the shadow:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#42000000" />
<corners android:radius="30dp" />
</shape>
Chaning to Glide 4
is not possible at the moment. Is there a way to get rounded corners and shadow with Glide 3
?

I am using Glide- implementation 'com.github.bumptech.glide:glide:3.7.0'
. And I am trying to get rounded corners for the ImageView
as well as some shadows.
My ImageView XML
:
<ImageView
android:id="@+id/song_album_cover"
android:layout_width="64dp"
android:layout_height="68dp"
android:layout_marginStart="8dp"
android:layout_marginTop="6dp"
android:elevation="18dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/no_cover_art"
android:background="@drawable/artist_cover_image"/>
How I am using Glide
to set the image:
Glide.with(getActivity())
.load(Common.SONG_URL_BASE + "/" + audioTitle + "/thumbnail.png")
.asBitmap()
.toBytes()
.into(new SimpleTarget<byte>(250, 250)
@Override
public void onResourceReady(byte data, GlideAnimation anim)
Bitmap bmp = BitmapFactory.decodeByteArray(data, 0, data.length);
holder.albumCoverArt.setImageBitmap(bmp);
);
And finally the android:background="@drawable/artist_cover_image"
I tried to use to set the corners and the shadow:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#42000000" />
<corners android:radius="30dp" />
</shape>
Chaning to Glide 4
is not possible at the moment. Is there a way to get rounded corners and shadow with Glide 3
?


asked Nov 9 at 21:01
Richard
347
347
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53233229%2frounded-corners-and-shadow-using-glide-3-7%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
gUgCp b6D