Did you read the article that I’ve posted in the previous topic? There are two sections that will answer your question (attached an image).
BackendlessDataQuery and Backendless collections are eliminated in v4 of Backendless. They need to be replaced with DataQueryBuilder and native collections.
Here are the docs of how these API currently work:
Unfortunately, rewriting client code is not covered by our free support policy. Please take a look at examples that I’ve attached in the previous reply or you may contact sales@backendless.com in order to gain support in rewriting your code for version 4 of Backendless.
You could explain how to recover the value of a cell called Descrizone
public void handleResponse( List<Fgiorno> foundContacts )
{
// the "foundContact" collection now contains instances of the Contact class.
// each instance represents an object stored on the server.
foundContacts.toString();
TextView txtdate13 = (TextView) findViewById(R.id.textView);
txtdate13.setText(foundContacts.toString());
}
I suppose your variable restaurants should be a response from Backendless. In this case, either rename ‘response’ to ‘restaurants’ or rename the other way.