Back to project page App-Growth-Engine-Android-TabUI.
The source code is released under:
Apache License
If you think the Android project App-Growth-Engine-Android-TabUI listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.hookmobile.tabui; //from w ww . ja v a 2s. c o m import java.util.List; /** * Interface for classes to implement play action. */ public interface Playable { /** * This play method will be invoked when the play button clicked. * Registering the play action on the TabUI is required. * * @param selectedFriends the phone numbers of the selected friends. */ public void play(List<String> selectedFriends); }