Back to project page example.
The source code is released under:
Apache License
If you think the Android project example 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 it.gmariotti.cardslib.library; //from w ww.j av a 2s . co m /** * @author Gabriele Mariotti (gabri.mariotti@gmail.com) */ public class Constants { public static class IntentManager{ /** * Intent Action for downloaded images */ public static final String INTENT_ACTION_IMAGE_DOWNLOADED = "it.gmariotti.cardslib.library.intent.action.IMAGE_DOWNLOADED"; /** * Extra for download result */ public static final String INTENT_ACTION_IMAGE_DOWNLOADED_EXTRA_RESULT = "ExtraResult"; /** * Extra for download process */ public static final String INTENT_ACTION_IMAGE_DOWNLOADED_EXTRA_ERROR_LOADING = "ExtraErrorLoading"; /** * Extra for {@link it.gmariotti.cardslib.library.internal.Card} id */ public static final String INTENT_ACTION_IMAGE_DOWNLOADED_EXTRA_CARD_ID = "ExtraCardId"; } }