Comment puis-je définir l'image d'arrière-plan avec picasso dans le code
Je sais que picasso charge l'image dans imageview etc mais comment puis-je définir mon image d'arrière-plan de mise en page en utilisant picasso? S'il vous plaît toute aide sera utile.
Mon Code:
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
RelativeLayout relativeLayout = (RelativeLayout) findViewById(R.id.relativelayout);
relativeLayout.setBackgroundResource(R.drawable.table_background);
Picasso.with(MainActivity.this)
.load(R.drawable.table_background)
.resize(200, 200)
.into(relativeLayout);
return relativeLayout;
}
Ce que j'ai ici donne n'importe quelle erreur disant qu'elle ne peut pas être résolue. J'ai un ScrollView et des mises en page relatives
21
demandé sur
user118742
2015-04-21 18:57:39
2 réponses
Utiliser le rappel de Picasso
Picasso.with(getActivity()).load(R.drawable.table_background).into(new Target(){
@Override
public void onBitmapLoaded(Bitmap bitmap, LoadedFrom from) {
mainLayout.setBackground(new BitmapDrawable(context.getResources(), bitmap));
}
@Override
public void onBitmapFailed(final Drawable errorDrawable) {
Log.d("TAG", "FAILED");
}
@Override
public void onPrepareLoad(final Drawable placeHolderDrawable) {
Log.d("TAG", "Prepare Load");
}
})
Mise à jour:
Veuillez vérifier CE aussi. comme @OlivierH mentionné dans le commentaire.
54
répondu
Soham
2017-05-23 11:46:54
La meilleure façon de créer une Transformation personnalisée par exemple pour la couleur de remplissage:
public class BackgroundColorTransform implements Transformation {
@ColorInt int mFillColor;
public BackgroundColorTransform(@ColorInt int color) {
super();
mFillColor = color;
}
@Override
public Bitmap transform(Bitmap bitmap) {
// Create another bitmap that will hold the results of the filter.
int width = bitmap.getWidth();
int height = bitmap.getHeight();
Bitmap out = Bitmap.createBitmap(width, height, bitmap.getConfig());
Canvas canvas = new Canvas(out);
Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
canvas.drawColor(mFillColor);
canvas.drawBitmap(bitmap, 0f, 0f, paint);
bitmap.recycle();
return out;
}
@Override
public String key() {
return "BackgroundColorTransform:"+mFillColor;
}
}
Utilisation:
mPicasso.load(imageUrl)
.transform(new BackgroundColorTransform(ContextCompat.getColor(getContext(),R.color.black)))
.into(mLogoImageView);
Si vous souhaitez ajouter une image vectorDrawable, utilisez la Transformation:
public class AddVectorDrawableTransform implements Transformation {
private Drawable mDrawable;
@ColorInt int mTintColor;
public AddVectorDrawableTransform(Drawable drawable, @ColorInt int tintColor) {
super();
mDrawable = drawable;
mTintColor = tintColor;
}
@Override
public Bitmap transform(Bitmap bitmap) {
// Create another bitmap that will hold the results of the filter.
int width = bitmap.getWidth();
int height = bitmap.getHeight();
Bitmap out = Bitmap.createBitmap(width, height, bitmap.getConfig());
Canvas canvas = new Canvas(out);
Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
canvas.drawBitmap(bitmap, 0f, 0f, paint);
Drawable drawable = mDrawable.mutate();
drawable = DrawableCompat.wrap(drawable);
DrawableCompat.setTint(drawable, mTintColor);
DrawableCompat.setTintMode(drawable, PorterDuff.Mode.SRC_IN);
// mDrawable.setColorFilter( mTintColor, PorterDuff.Mode.MULTIPLY);
drawable.setBounds(width/4, height/4, 3*width/4, 3*height/4);
drawable.draw(canvas);
bitmap.recycle();
return out;
}
@Override
public String key() {
return "AddDrawableTransform:"+mDrawable+", "+mTintColor;
}
}
0
répondu
NickUnuchek
2018-07-07 11:19:54