Sto cercando di utilizzare RecyclerView per mostrare il mio set di dati, cercando di seguire questo sito https://developer.android.com/training/material/lists-cards.htmlCome usare RecyclerView, cercando di seguire developer.android.com suggerimento, ma ottenere errore
Il problema è che v'è una certa parte sbagliato e non riesco a scoprire come risolverlo, ho fatto esattamente come suggerire quel sito.
public class MyAdapter extends RecyclerView.Adapter<MyAdapter.ViewHolder> {
private String[] 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 static class ViewHolder extends RecyclerView.ViewHolder {
// each data item is just a string in this case
public TextView mTextView;
public ViewHolder(TextView v) {
super(v);
mTextView = v;
}
}
// Provide a suitable constructor (depends on the kind of dataset)
public MyAdapter(String[] myDataset) {
mDataset = myDataset;
}
// Create new views (invoked by the layout manager)
@Override
public MyAdapter.ViewHolder onCreateViewHolder(ViewGroup parent,
int viewType) {
// create a new view
View v = LayoutInflater.from(parent.getContext())
.inflate(R.layout.my_text_view, parent, false);
// set the view's size, margins, paddings and layout parameters
...
ViewHolder vh = new ViewHolder(v); // ERROR
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.mTextView.setText(mDataset[position]);
}
// Return the size of your dataset (invoked by the layout manager)
@Override
public int getItemCount() {
return mDataset.length;
}
}
Android Studio mi dà un errore:
ViewHolder (android.widget.TextView) in ViewHolder cannot be applied
to (android.view.View)
Come devo fare questo?
Sembra developer.android.com avere qualche errore di battitura qui?
Aggiungi il codice ViewHolder alla tua domanda. –
dov'è la tua classe 'ViewHolder'? – Rustam
Aggiunto il codice completo, come se fosse su quel sito, quindi sembra che ho già ricevuto la risposta, ma sembra che ci sia errore nel sito developer.android.com .. – EspeH