gpt4 book ai didi

android - 使用 picasso 将相同的图像设置为 ImageView 的背景

转载 作者:行者123 更新时间:2023-11-30 00:49:26 27 4
gpt4 key购买 nike

我正在使用 Picasso 通过 URL 拍摄图像。在将图像变暗一点后,我试图将相同的图像设置为 imageview 的背景图像。我能够获取图像,但无法将相同的图像设置为 imageview 的背景。我目前的代码如下:

Activity 布局

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/background_light"
android:fitsSystemWindows="true"
>
<android.support.design.widget.AppBarLayout
android:id="@+id/main.appbar"
android:layout_width="match_parent"
android:layout_height="300dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true"
>

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/main.collapsing"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginStart="48dp"
app:expandedTitleMarginEnd="64dp"
>

<ImageView
android:id="@+id/main.backdrop"
android:layout_width="match_parent"
android:layout_height="300dp"
android:layout_gravity="center"
android:scaleType="centerInside"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax"
/>

</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>

...
</android.support.design.widget.CoordinatorLayout>

Activity 中的实现:

imageView = (ImageView)findViewById(R.id.main_backdrop);
Picasso.with(getActivity())
.load("someurl")
.placeholder(ContextCompat.getDrawable(getActivity(),R.drawable.mplaceholder))
.error(ContextCompat.getDrawable(getActivity(),R.drawable.merrorimage))
.into(imageView);

最佳答案

我想你创建了新目标 https://stackoverflow.com/questions/20181491/use-picasso-to-get-a-callback-with-a-bitmap

private Target target = new Target() {
@Override
public void onBitmapLoaded(Bitmap bitmap, Picasso.LoadedFrom from) {
imageView.setImageBitmap(bitmap);
// edit your bitmap and set as background
BitmapDrawable ob = new BitmapDrawable(getResources(), bitmap);
imageView.setBackgroundDrawable(ob);
}

@Override
public void onBitmapFailed(Drawable errorDrawable) {
}

@Override
public void onPrepareLoad(Drawable placeHolderDrawable) {
}
}

关于android - 使用 picasso 将相同的图像设置为 ImageView 的背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41304935/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com