Top "Adapter" questions

Use this tag for questions relating to the Adapter design pattern, one of the Gang of Four's structural design patterns.

How to remove listview all items

In my app, if you click on a button then i want to remove all the listview items. Here, i …

android listview 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
When do you use the Bridge Pattern? How is it different from Adapter pattern?

Has anyone ever used the Bridge Pattern in a real world application? If so, how did you use it? Is …

design-patterns adapter bridge
Filtering ListView with custom (object) adapter

I'm trying to implement filtering of a ListView which is uses a custom object adapter, but I can't find any …

android listview filter adapter
Android: notifyDataSetChanged(); not working

I have a database in a server and from a Tablet I take some values from one table in the …

android refresh adapter
Difference between the Facade, Proxy, Adapter and Decorator design patterns?

What is the difference between the Facade, Proxy, Adapter, and Decorator design patterns? I have never read a clear explanation, …

design-patterns proxy adapter decorator facade
How to get selected list items from a Listview with checkBox and Custom Adapter?

I have a ListView with CheckBox on it. and i am using Custom Adapter to populate the ListView. In my …

android listview checkbox adapter
Logcat error: "addView(View, LayoutParams) is not supported in AdapterView" in a ListView

I'm doing an application for Android and something I need is that it shows a list of all files and …

android listview adapter android-adapterview
adapter-Any real example of Adapter Pattern

I want to demonstrate use of Adapter Pattern to my team. I've read many books and articles online. Everyone is …

oop design-patterns adapter software-design
Difference between Bridge pattern and Adapter pattern

What is the difference between the Bridge and Adapter patterns?

design-patterns adapter bridge