Add this line to your app's build.gradle
inside the dependencies
section:
implementation 'com.mercadolibre.android:carddrawer:2.+'
- Easy to integrate
- Card number, name, expiration date and CVV support (Card)
- Card left and right image customization (CardUI)
- CVV support at front & back view
- Card flip animation integrated
- Live card view updated while CardData protocol is edited
- Support for custom overlay background image
// You can highlight the security code location.
// If the security code is behind, the card will transition with flip animation.
cardDrawerView.showSecurityCode();
cardDrawerView.show();
You can customize the data structure and style of your card.
Using Card
to update the card display values.
public class Card extends Observable implements Parcelable {
private String number;
private String name;
private String expiration;
private String secCode;
...
Using CardUI
to customize: position of security code, card background, font color, place holders, etc.
public interface CardUI {
/**
* @return the bank logo to show
*/
@DrawableRes
int getBankImageRes();
/**
* @return the card logo to show
*/
@DrawableRes
int getCardLogoImageRes();
/**
* Sets the card logo image to the Imageview
* @param cardLogo
*/
void setCardLogoImage(@NonNull ImageView cardLogo);
/**
* Sets bank image to the Imageview
* @param bankImage
*/
void setBankImage(@NonNull ImageView bankImage);
/**
* @return the security code position
*/
@SecurityCodeLocation
String getSecurityCodeLocation();
/**
* @return color for text
*/
@ColorInt
int getCardFontColor();
/**
* @return color for paint de card
*/
@ColorInt
int getCardBackgroundColor();
/**
* @return number long
*/
int getSecurityCodePattern();
/**
* Ej: **** **** **** ****
*
* @return the group of numbers
*/
int[] getCardNumberPattern();
/**
* Ej: NOMBRE Y APELLIDO
*
* @return the name place holder to show
*/
String getNamePlaceHolder();
/**
* Ej: MM/AA
*
* @return the expiration date place holder to show
*/
String getExpirationPlaceHolder();
/**
* @return the font type
*/
@FontType
String getFontType();
/**
* @return the animation type
*/
@CardAnimationType
String getAnimationType();
}
./gradlew publishLocal
Mercado Libre
Copyright 2019 Mercadolibre Developers
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.