Utkarsh Saboo
Utkarsh Saboo

Reputation: 67

What is the difference between arrayadapter and recyclerview.adapter?

I encountered two adapter declarations :

  1. public class WordAdapter extends ArrayAdapter< Word >
  2. public class GreenAdapter extends RecyclerView.Adapter< GreenAdapter.NumberViewHolder >

Both are performing almost the same job. How are they both different?

Upvotes: 1

Views: 2209

Answers (1)

Reza
Reza

Reputation: 339

the first one is made for the ListView , second one is made for RecyclerView , ListView is older , and almost is replaced by RecyclerView recently , google them

Upvotes: 1

Related Questions