Top "Android-adapter" questions

An Adapter object acts as a bridge between an AdapterView and the underlying data for that view.

How to update/refresh specific item in RecyclerView

I'm trying to refresh specific item in RecyclerView. Story: Whenever user clicks on item, it shows AlertDialog. User can type …

android android-adapter android-recyclerview
android - listview get item view by position

I have listview with custom adapter (base adapter). I want to get view from listview by position. I tried mListView.…

android android-listview android-view android-adapter
Android: how to refresh ListView contents?

My ListView is using an extension of BaseAdapter, I can not get it to refresh properly. When I refresh, it …

android listview android-adapter
How to customize listview using baseadapter

I wanna create a customized ListView like this: I think that I have to use BaseAdapter but I have no …

android listview android-adapter baseadapter
Best way to update data with a RecyclerView adapter

When I have to use a classic adapter with a ListView, I update my data in the ListView like this: …

android listview android-recyclerview android-adapter
What's the role of adapters in Android?

I want to know when, where and how adapters are used in the context of Android. The information from Android's …

android adapter android-adapter
Android - Implementing search filter to a RecyclerView

I need to implement a search feature based on an EditText to my RecyclerView. The list must be filtered while …

android search filter android-recyclerview android-adapter
Update data in ListFragment as part of ViewPager

I'm using the v4 compatibility ViewPager in Android. My FragmentActivity has a bunch of data which is to be displayed …

android android-fragments android-viewpager android-adapter android-listfragment
How to add section separators / dividers to a ListView?

I'm currently making a menu for my app, using a DrawerLayout and an ArrayAdapter subclass to achieve something looking like …

android android-layout android-listview android-adapter separator
Android: Radio button in custom list view

I am developing an application in which I need to implement radio buttons in list view. I want to implement …

android android-layout android-listview radio-button android-adapter