Examples of SwipeAdapter


Examples of com.eclipsesource.tabris.widgets.swipe.SwipeAdapter

  private void createPagingIndicator( Composite parent, Swipe swipe, int itemCount ) {
    final PagingIndicator pagingIndicator = new PagingIndicator( parent );
    pagingIndicator.setSpacing( 5 );
    pagingIndicator.setCount( itemCount );
    swipe.addSwipeListener( new SwipeAdapter() {
      @Override
      public void itemActivated(SwipeItem item, int index, SwipeContext context) {
        pagingIndicator.setActive( index );
      }
    } );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.