如何从信用卡表格中删除动画?

时间:2016-11-16 09:44:01

标签: android animation credit-card

我正在使用https://github.com/dbachelder/CreditCardEntry sdk进行信用卡验证,但是当我将卡号设置为CreditCardForm时,它正在振动并显示红色提示文本。任何人都可以帮助删除这种类型的动画吗?

import com.devmarvel.creditcardentry.library.CreditCardForm;

CreditCardForm.setCardNumber("************4242",false);

我的build.gradle是,

compile 'com.github.dbachelder:CreditCardEntry:1.4.7'

1 个答案:

答案 0 :(得分:1)

使用 app:animate_on_error 添加或删除CreditCardForm的动画

<com.devmarvel.creditcardentry.library.CreditCardForm
                        android:id="@+id/form_no_zip"
                        android:layout_width="wrap_content"
                        android:layout_height="match_parent"
                        app:card_number_hint="XXXX XXXX XXXX XXXX"
                        app:include_zip="false"
                        app:animate_on_error="false"
                        app:default_text_colors="@color/your_color_here"
                        app:helper_text_color="@color/your_color_here"
                        />

并添加您的主要布局xmlns:app="http://schemas.android.com/apk/res-auto"