我最近将Glide升级到版本4,这导致我在浮动操作按钮中显示的图像出现问题。我尝试了两种方法,并且我对两者使用相同的XML:
XML:
<android.support.design.widget.FloatingActionButton
android:id="@+id/profilepic_fab"
android:layout_width="150dp"
android:layout_height="150dp"
android:scaleType="center"
app:layout_anchor="@id/appbar"
app:layout_anchorGravity="bottom|center_horizontal"
app:srcCompat="@mipmap/bookmark_checked_white" />
方法#1:
RequestOptions optionsCentre = new RequestOptions()
.placeholder(R.drawable.profilepic_placeholder)
error(R.drawable.profilepic_placeholder).dontTransform()
.dontAnimate().CircleCrop();
Glide.with(context)
.load(userinfo.getprofilePic())
.apply(optionsCentre)
.into(profilepic);
方法#1的结果:在Android 7.1.2上看起来不错,但在4.4上看起来如下图所示:
方法#2:
RequestOptions options = new RequestOptions()
.fitCenter()
.placeholder(R.drawable.profilepic_placeholder)
.error(R.drawable.profilepic_placeholder)
.priority(Priority.HIGH);
Glide.with(context)
.asBitmap()
.apply(options)
.load(url)
.into(new BitmapImageViewTarget(fab) {
@Override
protected void setResource(Bitmap resource) {
RoundedBitmapDrawable circularBitmapDrawable =
RoundedBitmapDrawableFactory.create(context.getResources(), resource);
circularBitmapDrawable.setCircular(true);
fab.setImageDrawable(circularBitmapDrawable);
}
});
方法#2的结果:Android 7.1.2和4.4上的结果看起来不同
Android 7.1.2:
Android 4.4:
方法#2是以前与Glide v3一起使用的...任何帮助都将非常感谢!
答案 0 :(得分:3)
FloatingActionButton
无法使用任意宽度/高度值,而是使用app:fabSize
属性提供3种可用尺寸的输入尺寸:自动,迷你和普通。
将FAB的layout_width
和layout_height
指定为wrap_content
,并使用app:fabSize="normal"
(或列表中的其他参数)提供所需的工厂尺寸。
此问题与this one类似。
答案 1 :(得分:2)
使用FloatingActionButton
,无法实现所有Android版本的预期行为。
而不是FloatingActionButton
,使用ImageView
与第三方库(如Picasso或Glide)来加载和转换您的Image
资源。您也可以使用CircleImageView库。
解决方案1:
将ImageView
与Picasso
一起使用。
<强>摇篮:强>
dependencies {
.........
compile 'com.squareup.picasso:picasso:2.5.2'
}
<强>用法:强>
XML
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/image_header"
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="@drawable/dummy_background"/>
<ImageView
android:id="@+id/image_profile_pic"
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_marginTop="125dp"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
JAVA
ImageView imageProfilePic = (ImageView) findViewById(R.id.image_profile_pic);
Picasso.with(this)
.load(R.drawable.dummy_profile_pic)
.resize(150, 150)
.centerCrop()
.transform(new CircleTransform())
.into(imageProfilePic);
<强>输出:强>
解决方案2:
将ImageView
与Glide
一起使用。
<强>摇篮:强>
dependencies {
.........
compile 'com.github.bumptech.glide:glide:4.0.0-RC1'
}
<强>用法:强>
XML
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/image_header"
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="@drawable/dummy_background"/>
<ImageView
android:id="@+id/image_profile_pic"
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_marginTop="125dp"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
JAVA
ImageView imageProfilePic = (ImageView) findViewById(R.id.image_profile_pic);
Glide.with(this)
.load(R.drawable.dummy_profile_pic)
.apply(RequestOptions.circleCropTransform())
.into(imageProfilePic);
<强>输出:强>
解决方案3:
使用CircleImageView
库。
<强>摇篮:强>
dependencies {
.........
compile 'de.hdodenhof:circleimageview:2.1.0'
}
<强>用法:强>
XML
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/image_header"
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="@drawable/dummy_background"/>
<de.hdodenhof.circleimageview.CircleImageView
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/image_profile_pic"
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_marginTop="125dp"
android:layout_centerHorizontal="true"
app:civ_border_width="2dp"
app:civ_border_color="#FFFFFF"/>
</RelativeLayout>
JAVA
CircleImageView imageProfilePic = (CircleImageView) findViewById(R.id.image_profile_pic);
Picasso.with(this)
.load(R.drawable.dummy_profile_pic)
.into(imageProfilePic);
<强>输出:强>
希望这会有所帮助〜