Adapter is a software design pattern that makes several interfaces compatible through a common interface or class.

learn more… | top users | synonyms

12
votes
1answer
2k views

Sync Adapter without Account

I need to fetch some data over the cloud from my app. I've watched the google IO video on RESTful android apps @ http://www.youtube.com/watch?v=xHXn3Kg2IQE&t=43m58s It recommends in the final ...
11
votes
6answers
8k views

Android, ListView IllegalStateException: “The content of the adapter has changed but ListView did not receive a notification”

What I want to do: run a background thread which calculates ListView contents and update ListView partially, while results are calculated. What I know I have to avoid: I cannot mess with ListAdapter ...
10
votes
1answer
130 views

Are most PHP frameworks actually MVA instead of MVC?

Many PHP frameworks claim that they implement MVC design pattern. However, in their implementation, the model and view don't know each other and each communication in between must be done through ...
10
votes
1answer
5k views

GetView Vs. BindView in a custom CursorAdapter?

So, I'm watching this video http://www.youtube.com/watch?v=N6YdwzAvwOA and Romain Guy is showing how to make more efficient UI adapter code using the getView() method. Does this apply to ...
10
votes
5answers
7k views

Own sync adapter for Android?

The press release of Android 2.0 states that the new release supports sync adapters so that emails and calendars cannot only be synced with gmail and exchange. However, there is no information ...
9
votes
1answer
2k views

ArrayIndexOutOfBoundsException with custom Android Adapter for multiple views in ListView

I am attempting to create a custom Adapter for my ListView since each item in the list can have a different view (a link, toggle, or radio group), but when I try to run the Activity that uses the ...
9
votes
8answers
1k views

Void value as return parameter

I have this interface: public interface Command<T> { T execute(String... args); } it works fine for most uses. But when I try to model a command that have only side effects (e.g. without ...
9
votes
5answers
10k views

Command/Powershell script to reset a network adapter

OS: Vista enterprise When i switch between my home and office network, i always face issues with getting connected to the network. Almost always I have to use the diagnostic service in 'Network and ...
8
votes
1answer
1k views

GridView inside Expandable list in android

I want to put an gridview with images inside an expandable list...I've already make that, but the gridview don't show all item... IMAGE OF ACTUAL LAYOUT How can i make my expandable list child adapt ...
8
votes
5answers
303 views

Can I write a C++ functor that accepts both a raw pointer and a smart pointer?

Given the following: struct Foo { int bar() const; }; struct IsEqual : public std::unary_function<Foo*, bool> { int val; IsEqual(int v) : val(v) {} bool operator()(const Foo* ...
8
votes
5answers
480 views

Design pattern for default implementation with empty methods

Is there a specific design pattern that describes the scenario where a non-abstract default implementation is provided that implements all or some of the methods on the interface with empty, NO-OP ...
7
votes
0answers
176 views

Consensus on lazy loading Bitmaps in an Adapter (emphasis on Bitmap.recycle()) [closed]

I see a truckload of suggestions for this, but none (that I've found) take all factors into account, the factors being: Asynchronous downloading, without duplication (of downloaders and ...
7
votes
4answers
12k views

android listviews: header and footer views

In my ListActivity, I need header and footer views (on the top and bottom of the list) to be used as previous page and next page buttons on my list, respectively, because I want to display only 20 ...
6
votes
2answers
1k views

Best place to addHeaderView in ListFragment

I'm having some trouble setting up my custom header in my list. I'm creating a ListFragment with a custom adapter. I have the list working fine, but I'm trying to figure out where in the lifecycle ...
6
votes
3answers
4k views

how to implement in endless gallery in android gallery application

Hi I am using gallary layout my application is running when gallary moving from left ti right it is infinite that means elements are repeated again,Here is no problem,But when we move from right to ...
6
votes
3answers
16k views

How to set selected item of Spinner by value, not by position?

I have a update view, where I need to preselect the value stored in database for a Spinner. I was having in mind something like this, but the Adapter has no indexOf method, so I am stuck . void ...
6
votes
1answer
2k views

Android: Filtering a SimpleCursorAdapter ListView

Right now, I'm running into issues trying to implement a FilterQueryProvider in my custom SimpleCursorAdapter, since I'm unsure of what to do in the FilterQueryProvider's runQuery function. In other ...
6
votes
4answers
775 views

Implementing safe duck-typing in C#

After looking at how Go handles interfaces and liking it, I started thinking about how you could achieve similar duck-typing in C# like this: var mallard = new Mallard(); // doesn't implement IDuck ...
5
votes
2answers
59 views

Best-practice: Update ArrayAdapter continously

I have a Service which fetches some data from the web and updates a List which is "stored" in the Application. Thus, i can access it from the main activity and use it for my ArrayAdapter. When I ...
5
votes
1answer
224 views

Asynchronous download of Bitmaps in an Adapter, with emphasis on Bitmap.recycle()

Could someone tell me how to make a good mechanism for async. download of images for use in a ListView/GridView? There are many suggestions, but each only considers a small subset of the typical ...
5
votes
2answers
96 views

reverse_iterator adapter

I'm trying to implement a reverse-iterator adaptor for my iterator and const_iterator classes with a little bit of trouble. If anyone could guide me through this, that would be greatly appreciated! ...
5
votes
2answers
66 views

How to write JUnit for Adapter without overcomplicated code?

I have an adapter from I1 to ILogger implemented like this: class BAdapter() implements I1 { void logA() { // nothing } void logB() { new BLogger().log() } void logC() { // nothing } } I ...
5
votes
2answers
475 views

Animate newly added items in ListVIew

How can I animate newly added items in ListView? I have a adapter and when I add new items in my list I say adapter.notifyDataSetChanged(); the items are added, everything works perfectly, but my ...
5
votes
1answer
2k views

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 useful samples. The included code is very simplified, so no- keep in mind I can't use an ...
5
votes
1answer
570 views

JAXB: Problem deserializing a class B that extends a class A

Please consider the following example: There is a ClassA and a ClassB which extends it. My problem is now that I have to unmarshall a ClassB from an xml file. Please note that ClassA can not be ...
5
votes
2answers
5k views

Best practices of working with multiple sqlite DB tables in Android

in my android app I use a DB with multiple tables, I have an XML parser which needs to write data to 2 tables while parsing. I created 2 DBadapters for 2 tables, but now I have a problem. When ...
5
votes
5answers
512 views

Is this really an example of the adapter pattern?

I have an interface -- "EventHandler" -- that declares several methods. public interface EventHandler { void handleEvent1(); void handleEvent2(); void handleEvent3(); void ...
5
votes
3answers
15k views

how to add item to Spinner's ArrayAdapter?

i had a EditText , a button and a spinner . When click the button , the spinner will add a new item with name you entered in the EditText. But here is the question, my adapter.add() method seems ...
5
votes
2answers
6k views

Android: EfficientAdapter with two different Views

I'm using an extended version of BaseAdapter based on the EfficientAdapter example from the SDK demo samples. My data is basically an object (ListPlaces) which holds an ArrayList with the actual list ...
5
votes
7answers
3k views

A C++ iterator adapter which wraps and hides an inner iterator and converts the iterated type

Having toyed with this I suspect it isn't remotely possible, but I thought I'd ask the experts. I have the following C++ code: class IInterface { virtual void SomeMethod() = 0; }; class Object ...
5
votes
3answers
2k views

iterator adapter to iterate just the values in a map?

I'm just getting back into C++ after a couple of years of doing a lot of C#, and recently Objective C. One thing I've done before is to roll my own iterator adapter for std::map that will deref to ...
4
votes
1answer
113 views

Should adapters in Android be static inner classes or non-static inner classes

I have a ListView in an Activity and I am setting a custom adapter to the listview. Should my adapter class be: private static class MyAdapter extends ArrayAdapter or private class MyAdapter ...
4
votes
2answers
114 views

Implement interface methods that do nothing

Lets say I have this interface and class: interface IListener { void f(); void g(); void h(); } class Adapter implements IListener { void f() {} void g() {} void h() {} } What is ...
4
votes
3answers
2k views

Android: Viewpager and FragmentStatePageAdapter

I'm designing an app that allows users to flip between multiple pages in a ViewPager. I've been struggling trying to figure out how it is possible to remove a Fragment instance from a page when it is ...
4
votes
1answer
673 views

RSS Feed and Google's XML Adapter example - Does it work?

I'm trying to understand Google's example of XML Adapters as shown at http://developer.android.com/resources/samples/XmlAdapters/index.html, especially as it related to RSS feeds. I cannot get ...
4
votes
1answer
400 views

Need to generate JAXB annotions in package-info.java from binding file

I have an annotation for an XmlAdapter that I need to put in package-info.java.. The problem is, our package-info.java is automatically generated from XJC. Is there a way to use the JAXB binding file ...
4
votes
1answer
5k views

Logcat error: “addView(View, LayoutParams) is not supported in AdapterView” in a ListView

I'm doing an aplication for Android and something I need is that it shows a list of all files and directories in the SD Card and it has to be able to move through the different directories. I found a ...
4
votes
1answer
267 views

Adapter pattern with static classes

I am looking for a good way to implement the Adaptor pattern with static classes in PHP 5.x. One of the examples where I would like to use this, is as a counterpart to Python's os.path.join(). I ...
4
votes
3answers
4k views

Using Cursor with ListView adapter for a large amount of data

i am using a custom CursorAdapter to get data from a SQLite database and show it in a listview. The database contains a 2 columns with about 8.000 rows. so i am looking for a way to query and show all ...
4
votes
1answer
155 views

How can a java application running on windows 7 choose which network adapter to use

Hi I am writing an application for a device -- tablet -- running windows 7. The application is being written in java. The application needs to be aware of which networking adapter is available ...
4
votes
2answers
1k views

Eclipse CDT Linux ClearCase SCM Adapter plug-in install problems

I'm having a silly little problem with Eclipse. I'm trying to install Rational ClearCase SCM adapter in Eclipse (Helios SR1) CDT Linux 64 bit. I downloaded ClearCase plug-in form here. I tried both ...
4
votes
2answers
1k views

AlphabetIndexer with Custom Adapter

Can someone show me an example of how to use AlphabetIndexer with a Custom Adapter that uses a getView? I have it working with a standard adapter, but have no clue how to implement it with a custom ...
4
votes
5answers
8k views

Clear listview content?

I have a little problem with listview. How do i clear a listview content, knowing that it has a custom adapter? edit : the custom adapter class extends BaseAdapter, it looks like this : import ...
4
votes
3answers
556 views

What's the role of adapters in Android?

I have recently started working on Android. I want to know when and where adapters are used and how they are used. I didn't get much information from androids developer documentation.
4
votes
2answers
385 views

when do we need Adapter pattern?

When do we need to go for Adapter pattern? If possible give me a real world example that suits that pattern...
3
votes
2answers
83 views

Android: value of one spinner depends on value of other spinner

I have a problem on Android Spinner.In my application I created two Spinner on main layout. 'State' Spinner and 'District' Spinner. All the data on Spinner are stored in SQLite database. I want do ...
3
votes
2answers
53 views

Where is the adapter pattern used in .NET?

What areas of .NET did Microsoft leverage the Adapter pattern in? I am looking for specific examples of .NET components using Adapter.
3
votes
2answers
145 views

android : checkboxes in a ListView ( strange behaviour of selected element)

I found here and here similar issues, but the problem is slightly different. In a ListView, I try to put an adapter (extends from base Adapter) which contents checkbox. List view layout: <?xml ...
3
votes
1answer
101 views

C: How to pass parameters to the function called by clone()?

I have the problem described in the title. I have to use the clone()-systemcall in the main-function to get 2 threads. (I know, there are other options, but in this case, it has to be clone()). The ...
3
votes
1answer
44 views

Android: How to create CursorAdapter from the data in an XML file

In android can we create CursorAdapter from the data in an XML file? Here's the actual problem: I need to create a ListView whose items can vary. Each items has three fields: ItemName, ItemValue, ...

1 2 3 4 5 14