我一直在广泛使用string bundle通过互联网将图像检索到我的应用。现在,我遇到了需要将一个小图像检索到操作栏的情况(如标题文本旁边的徽标)。
Picasso可以做到这一点吗?如果是这样,我该怎么做?
答案 0 :(得分:20)
我找到了一个使用Picasso Target
类的解决方案,并且不需要自定义操作栏。
final ActionBar ab = getSupportActionBar();
Picasso.with(this)
.load(imageURL)
.into(new Target()
{
@Override
public void onBitmapLoaded(Bitmap bitmap, Picasso.LoadedFrom from)
{
Drawable d = new BitmapDrawable(getResources(), bitmap);
ab.setIcon(d);
ab.setDisplayShowHomeEnabled(true);
ab.setDisplayHomeAsUpEnabled(true);
}
@Override
public void onBitmapFailed(Drawable errorDrawable)
{
}
@Override
public void onPrepareLoad(Drawable placeHolderDrawable)
{
}
});
答案 1 :(得分:2)
您可以像加载任何其他毕加索图像一样加载图片,但另外一步是添加自定义操作栏。类似的东西:
final View actionBarLayout = getLayoutInflater().inflate(R.layout.custom_action_bar, null);
actionBar = getSupportActionBar();
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setDisplayShowCustomEnabled(true);
actionBar.setDisplayHomeAsUpEnabled(false);
actionBar.setCustomView(actionBarLayout);
然后
myIcon = (ImageView) actionBarLayout.findViewById(R.id.myIcon);
Picasso.with(this).load("http://myimage.png").into(myIcon);