Hello,
I would like to know if there is any way to display a message to show to the user that the phone is processing or waiting for data?
I tried the following code in my frame
public boolean onMessage(Object identifier, Object[] arguments) {
if("search".equals(identifier)) {
Kuix.alert("Please wait");
String s = (String) arguments[0];
productSearch.search(s);
return false;
}
return true;
}
But it seems that Kuix waits the end of the onMessage function to change the screen.
Do I do something wrong?

