Estou tentando usar a biblioteca do picasso para carregar o url no imageView, mas não consigo context
usar a biblioteca do picasso corretamente.
public class FeedAdapter extends RecyclerView.Adapter<FeedAdapter.ViewHolder> {
private List<Post> mDataset;
// Provide a reference to the views for each data item
// Complex data items may need more than one view per item, and
// you provide access to all the views for a data item in a view holder
public class ViewHolder extends RecyclerView.ViewHolder {
// each data item is just a string in this case
public TextView txtHeader;
public ImageView pub_image;
public ViewHolder(View v) {
super(v);
txtHeader = (TextView) v.findViewById(R.id.firstline);
pub_image = (ImageView) v.findViewById(R.id.imageView);
}
}
// Provide a suitable constructor (depends on the kind of dataset)
public FeedAdapter(List<Post> myDataset) {
mDataset = myDataset;
}
// Create new views (invoked by the layout manager)
@Override
public FeedAdapter.ViewHolder onCreateViewHolder(ViewGroup parent,
int viewType) {
// create a new view
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.feedholder, parent, false);
// set the view's size, margins, paddings and layout parameters
ViewHolder vh = new ViewHolder(v);
return vh;
}
// Replace the contents of a view (invoked by the layout manager)
@Override
public void onBindViewHolder(ViewHolder holder, int position) {
// - get element from your dataset at this position
// - replace the contents of the view with that element
holder.txtHeader.setText(mDataset.get(position).getPost_text());
Picasso.with(this.context).load("http://i.imgur.com/DvpvklR.png").into(holder.pub_image);
}
// Return the size of your dataset (invoked by the layout manager)
@Override
public int getItemCount() {
return mDataset.size();
}
}
java
android
android-recyclerview
picasso
android-context
Estranho B.
fonte
fonte
ApplicationContext
e não estará vinculado à atividade, levando a uma falha de tempo de execução no Glide.Você pode adicionar variável global:
em seguida, atribua o contexto a partir daqui:
Happy Codding :)
fonte
onDetachedFromRecyclerView
.Resposta curta:
Explicação por que outras respostas não são ótimas:
Context
para o adaptador é completamente desnecessário, poisRecyclerView
você pode acessá-lo de dentro da classeContext
noViewHolder
nível significa que você faz isso toda vez que liga ou cria umViewHolder
. Você duplica operações.Activity
vida útil (o que seria estranho), você já terá um vazamento.fonte
onDetachedFromRecyclerView()
e liberar contexto?Você pode usar o contexto pub_image (
holder.pub_image.getContext()
):fonte
Você pode definir:
E na
onCreate
inicializaçãoctx
para:Nota: Pai é um ViewGroup.
fonte
Primeiro declarar globalmente
Context mContext;
passe o contexto com o construtor, modificando-o.
depois use o local
mContext
que precisarfonte
Você pode usar como este view.getContext ()
Exemplo
fonte
você pode usar isso:
fonte
Crie um construtor do FeedAdapter:
e em atividade
fonte
Primeiro adicione uma variável global
Então mude seu construtor para este
A passagem do seu contexto ao criar o adaptador.
fonte
fonte