Hi,
I've misunderstood Robobinding, I was expecting the following to work but it doesn't
I have a collection of object A.
Object A has several fields, which I display over several fragments.
I have two buttons, left, right, that traveres the collection, but, the fragments, displaying the fields don't get updated?
public void leftButton(){
index--;
objectA = objectAs.get(index);
}
all the fragments display fields, eg:
public String getName(){return "Name: "+ objectA.getName();}
Logs show that the collection is being traversed, but the displays aren't being updated.
Help please!?!?!?!?
kind regards