Top "Android-adapter" questions

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

Bluetooth device discovery in Android -- startDiscovery()

Goal: Build an Android app that discovers the names and addresses of BT devices within range and submits their values …

android android-intent bluetooth android-adapter android-context
Getting the android context in an adapter

In many of the code samples that I find on the internet the context is obtained in the constructor of …

android android-adapter android-context
Custom Adapter getView() method is not called

Here is the code of the fragment in which I am setting a custom adapter to the list. There no …

android android-adapter
"RecyclerView: No Adapter attached; skipping layout" for recyclerview in fragment

I'm getting this error but I don't know what is causing it...perhaps something to do with the fact that …

android android-fragments android-adapter android-recyclerview android-cardview
Using AsyncTask to load Images in ListView

I have one ListView which can hold an image. It depends if image exists or not in SDCARD. Here my …

android android-listview android-asynctask android-adapter
No adapter attached; skipping layout

logcat error : No adapter attached; skipping layout I changed the context argument with getActivity(), but the app is still not …

android android-adapter android-recyclerview android-cardview
How to use Universal Image Loader

I have a requirement where I need to load thumbnails and a Text in ListView which gets set by the …

android android-listview android-image android-adapter
RecyclerView Adapter notifyDataSetChanged not working

I extended RecyclerView.Adapter<RecyclerView.ViewHolder> And when I called: mRecyclerView.getAdapter().notifyDataSetChanged(); Nothing happened. The only way …

android android-adapter android-recyclerview notifydatasetchanged
Using Android AutoCompleteTextView with ArrayAdapter<Objects> instead of ArrayAdapter<Strings>

I wanted to use AutoCompleteTextView in my android application.I know how to use it with simple array of Strings, …

android autocomplete android-view android-adapter
How to display an ArrayList in a RecyclerView?

I need to add an Activity where I can list the elements of an ArrayList<CustomClass> and I've …

java android arraylist android-recyclerview android-adapter