We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suppose we have 10 elements in the array. So is there any way to add 10 SwipeItems with the Java code i.e to dynamically add 10 swipeitems ??
The text was updated successfully, but these errors were encountered:
You can achieve this with the following code. Note that lists wont work, only arrays:
SwipeItem[] swipeItems = new SwipeItem[10]; for (int i = 0; i < 10; i++) { SwipeItem item = new SwipeItem( object , title, desc); swipeItems[i] = item; } swipeSelector.setItems(swipeItems);
Sorry, something went wrong.
it doesn't update the View Title values when called for the 2nd time. Any help?
no update from dpather Question? i have same issue as dpather, i hope there is an answer about this issue.
No branches or pull requests
Suppose we have 10 elements in the array. So is there any way to add 10 SwipeItems with the Java code i.e
to dynamically add 10 swipeitems ??
The text was updated successfully, but these errors were encountered: