137 |
138 |
139 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/card_front.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
13 |
14 |
15 |
25 |
26 |
31 |
32 |
39 |
40 |
50 |
51 |
64 |
65 |
75 |
76 |
88 |
89 |
98 |
99 |
109 |
110 |
111 |
112 |
113 |
--------------------------------------------------------------------------------
/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | ##############################################################################
4 | ##
5 | ## Gradle start up script for UN*X
6 | ##
7 | ##############################################################################
8 |
9 | # Attempt to set APP_HOME
10 | # Resolve links: $0 may be a link
11 | PRG="$0"
12 | # Need this for relative symlinks.
13 | while [ -h "$PRG" ] ; do
14 | ls=`ls -ld "$PRG"`
15 | link=`expr "$ls" : '.*-> \(.*\)$'`
16 | if expr "$link" : '/.*' > /dev/null; then
17 | PRG="$link"
18 | else
19 | PRG=`dirname "$PRG"`"/$link"
20 | fi
21 | done
22 | SAVED="`pwd`"
23 | cd "`dirname \"$PRG\"`/" >/dev/null
24 | APP_HOME="`pwd -P`"
25 | cd "$SAVED" >/dev/null
26 |
27 | APP_NAME="Gradle"
28 | APP_BASE_NAME=`basename "$0"`
29 |
30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31 | DEFAULT_JVM_OPTS=""
32 |
33 | # Use the maximum available, or set MAX_FD != -1 to use that value.
34 | MAX_FD="maximum"
35 |
36 | warn () {
37 | echo "$*"
38 | }
39 |
40 | die () {
41 | echo
42 | echo "$*"
43 | echo
44 | exit 1
45 | }
46 |
47 | # OS specific support (must be 'true' or 'false').
48 | cygwin=false
49 | msys=false
50 | darwin=false
51 | nonstop=false
52 | case "`uname`" in
53 | CYGWIN* )
54 | cygwin=true
55 | ;;
56 | Darwin* )
57 | darwin=true
58 | ;;
59 | MINGW* )
60 | msys=true
61 | ;;
62 | NONSTOP* )
63 | nonstop=true
64 | ;;
65 | esac
66 |
67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
68 |
69 | # Determine the Java command to use to start the JVM.
70 | if [ -n "$JAVA_HOME" ] ; then
71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
72 | # IBM's JDK on AIX uses strange locations for the executables
73 | JAVACMD="$JAVA_HOME/jre/sh/java"
74 | else
75 | JAVACMD="$JAVA_HOME/bin/java"
76 | fi
77 | if [ ! -x "$JAVACMD" ] ; then
78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
79 |
80 | Please set the JAVA_HOME variable in your environment to match the
81 | location of your Java installation."
82 | fi
83 | else
84 | JAVACMD="java"
85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
86 |
87 | Please set the JAVA_HOME variable in your environment to match the
88 | location of your Java installation."
89 | fi
90 |
91 | # Increase the maximum file descriptors if we can.
92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
93 | MAX_FD_LIMIT=`ulimit -H -n`
94 | if [ $? -eq 0 ] ; then
95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
96 | MAX_FD="$MAX_FD_LIMIT"
97 | fi
98 | ulimit -n $MAX_FD
99 | if [ $? -ne 0 ] ; then
100 | warn "Could not set maximum file descriptor limit: $MAX_FD"
101 | fi
102 | else
103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
104 | fi
105 | fi
106 |
107 | # For Darwin, add options to specify how the application appears in the dock
108 | if $darwin; then
109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
110 | fi
111 |
112 | # For Cygwin, switch paths to Windows format before running java
113 | if $cygwin ; then
114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
116 | JAVACMD=`cygpath --unix "$JAVACMD"`
117 |
118 | # We build the pattern for arguments to be converted via cygpath
119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
120 | SEP=""
121 | for dir in $ROOTDIRSRAW ; do
122 | ROOTDIRS="$ROOTDIRS$SEP$dir"
123 | SEP="|"
124 | done
125 | OURCYGPATTERN="(^($ROOTDIRS))"
126 | # Add a user-defined pattern to the cygpath arguments
127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
129 | fi
130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
131 | i=0
132 | for arg in "$@" ; do
133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
135 |
136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
138 | else
139 | eval `echo args$i`="\"$arg\""
140 | fi
141 | i=$((i+1))
142 | done
143 | case $i in
144 | (0) set -- ;;
145 | (1) set -- "$args0" ;;
146 | (2) set -- "$args0" "$args1" ;;
147 | (3) set -- "$args0" "$args1" "$args2" ;;
148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
154 | esac
155 | fi
156 |
157 | # Escape application args
158 | save () {
159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
160 | echo " "
161 | }
162 | APP_ARGS=$(save "$@")
163 |
164 | # Collect all arguments for the java command, following the shell quoting and substitution rules
165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
166 |
167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
169 | cd "$(dirname "$0")"
170 | fi
171 |
172 | exec "$JAVACMD" "$@"
173 |
--------------------------------------------------------------------------------
/app/src/main/java/com/aiman/creditcardscreen/ui/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package com.aiman.creditcardscreen.ui
2 |
3 | import android.animation.AnimatorInflater
4 | import android.animation.AnimatorSet
5 | import android.graphics.drawable.AnimatedVectorDrawable
6 | import android.os.Bundle
7 | import android.view.View
8 | import androidx.activity.viewModels
9 | import androidx.appcompat.app.AppCompatActivity
10 | import androidx.databinding.DataBindingUtil
11 | import com.aiman.creditcardscreen.R
12 | import com.aiman.creditcardscreen.databinding.ActivityMainBinding
13 | import com.aiman.creditcardscreen.extensions.Extensions.setCreditCardTextWatcher
14 | import com.aiman.creditcardscreen.extensions.Extensions.setExpiryDateFilter
15 | import com.aiman.creditcardscreen.utils.CardType
16 | import kotlinx.coroutines.MainScope
17 | import kotlinx.coroutines.delay
18 | import kotlinx.coroutines.launch
19 | import render.animations.*
20 |
21 | class MainActivity : AppCompatActivity() {
22 |
23 | private lateinit var binding: ActivityMainBinding
24 | private val viewModel by viewModels()
25 |
26 | lateinit var flipLeftIn: AnimatorSet
27 | lateinit var flipLeftOut: AnimatorSet
28 | lateinit var flipRightOut: AnimatorSet
29 | lateinit var flipRightIn: AnimatorSet
30 |
31 | lateinit var animatedVectorDrawable: AnimatedVectorDrawable
32 |
33 | private var isFront = true
34 |
35 | override fun onCreate(savedInstanceState: Bundle?) {
36 | super.onCreate(savedInstanceState)
37 |
38 | binding = DataBindingUtil.setContentView(this, R.layout.activity_main)
39 | binding.apply {
40 | lifecycleOwner = this@MainActivity
41 | viewModel = this@MainActivity.viewModel
42 | frontSide.viewModel = this@MainActivity.viewModel
43 | frontSide.lifecycleOwner = this@MainActivity
44 | backSide.viewModel = this@MainActivity.viewModel
45 | backSide.lifecycleOwner = this@MainActivity
46 | }
47 |
48 | setupAnimation()
49 | setupViews()
50 |
51 | }
52 |
53 | private fun setupAnimation() {
54 | val scale = applicationContext.resources.displayMetrics.density
55 | binding.frontSide.frontSide.cameraDistance = 16000 * scale
56 | binding.backSide.backSide.cameraDistance = 16000 * scale
57 |
58 | flipLeftIn =
59 | AnimatorInflater.loadAnimator(this, R.animator.card_flip_left_in) as AnimatorSet
60 | flipLeftOut =
61 | AnimatorInflater.loadAnimator(this, R.animator.card_flip_left_out) as AnimatorSet
62 | flipRightIn =
63 | AnimatorInflater.loadAnimator(this, R.animator.card_flip_right_in) as AnimatorSet
64 | flipRightOut =
65 | AnimatorInflater.loadAnimator(this, R.animator.card_flip_right_out) as AnimatorSet
66 | }
67 |
68 | private fun flipCard() {
69 | if (isFront) {
70 | flipRightIn.setTarget(binding.backSide.backSide)
71 | flipRightOut.setTarget(binding.frontSide.frontSide)
72 | flipRightIn.start()
73 | flipRightOut.start()
74 | } else {
75 | flipLeftIn.setTarget(binding.frontSide.frontSide)
76 | flipLeftOut.setTarget(binding.backSide.backSide)
77 | flipLeftIn.start()
78 | flipLeftOut.start()
79 | }
80 | isFront = !isFront
81 | }
82 |
83 | private fun setupViews() {
84 | binding.etCardNumber.setCreditCardTextWatcher()
85 | binding.etExpiryDate.setExpiryDateFilter()
86 |
87 | viewModel.cardNumber.observe(this,
88 | { value ->
89 | replacePlaceholder(value)
90 | checkCardType(value)
91 | }
92 | )
93 |
94 | binding.etCardCvv.setOnFocusChangeListener { view, b ->
95 | if (b) {
96 | flipCard()
97 | } else {
98 | MainScope().launch {
99 | delay(400)
100 | flipCard()
101 | }
102 | }
103 | }
104 | }
105 |
106 | private fun replacePlaceholder(value: String) {
107 | var placeholderString = "**** **** **** ****"
108 |
109 | value.forEach {
110 | val sb = StringBuilder(placeholderString)
111 | val firstIndex = placeholderString.indexOf("*")
112 | sb.setCharAt(firstIndex, it)
113 | placeholderString = sb.toString()
114 | }
115 | viewModel.cardNumberPlaceholder.postValue(placeholderString)
116 | }
117 |
118 | private fun checkCardType(value: String) {
119 | if (value.length < 4) {
120 | viewModel.cardType.value = CardType.NO_TYPE
121 | return
122 | }
123 |
124 | if (value.startsWith("4")) {
125 | viewModel.cardType.value = CardType.VISA_CARD
126 | } else {
127 | viewModel.cardType.value = CardType.MASTER_CARD
128 | }
129 | }
130 |
131 | private fun saveCard() {
132 | viewModel.cardSaved.value = true
133 | var render = Render(this).also { it.setAnimation(Slide.InUp(binding.tempImg)) }
134 | render.start()
135 |
136 | MainScope().launch {
137 | delay(1000)
138 | binding.tvCardSaved.visibility = View.VISIBLE
139 | var textRender =
140 | Render(this@MainActivity).also { it.setAnimation(Fade.InUp(binding.tvCardSaved)) }
141 | textRender.start()
142 | delay(3000)
143 | // render = Render(this@MainActivity).also { it.setAnimation(Fade.Out(binding.tempImg)) }
144 | render = Render(this@MainActivity).also { it.setAnimation(Flip.OutX(binding.tempImg)) }
145 | textRender =
146 | Render(this@MainActivity).also { it.setAnimation(Fade.Out(binding.tvCardSaved)) }
147 | render.start()
148 | textRender.start()
149 | }
150 |
151 | MainScope().launch {
152 | delay(1000)
153 | val drawable = binding.done.drawable
154 | animatedVectorDrawable = drawable as AnimatedVectorDrawable
155 | animatedVectorDrawable.start()
156 | }
157 |
158 | }
159 |
160 | fun onClick(view: View) {
161 | when (view.id) {
162 | R.id.save_btn -> saveCard()
163 | R.id.btn -> flipCard()
164 | }
165 | }
166 | }
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_launcher_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
15 |
20 |
25 |
30 |
35 |
40 |
45 |
50 |
55 |
60 |
65 |
70 |
75 |
80 |
85 |
90 |
95 |
100 |
105 |
110 |
115 |
120 |
125 |
130 |
135 |
140 |
145 |
150 |
155 |
160 |
165 |
170 |
171 |
--------------------------------------------------------------------------------
/app/src/main/java/com/aiman/creditcardscreen/utils/CreditCardFormatTextWatcher.kt:
--------------------------------------------------------------------------------
1 | package com.aiman.creditcardscreen.utils
2 |
3 | import android.content.Context
4 | import android.graphics.Canvas
5 | import android.graphics.Paint
6 | import android.graphics.Paint.FontMetricsInt
7 | import android.text.Editable
8 | import android.text.Spannable
9 | import android.text.TextWatcher
10 | import android.text.style.ReplacementSpan
11 | import android.util.TypedValue
12 | import android.widget.TextView
13 |
14 | class CreditCardFormatTextWatcher : TextWatcher {
15 |
16 | private val NO_MAX_LENGTH = -1
17 | private var maxLength = NO_MAX_LENGTH
18 | private var paddingPx = 0
19 | private var internalStopFormatFlag = false
20 |
21 | /**
22 | * Create a credit card formatter with no max length and a padding specified in pixels
23 | *
24 | * @param paddingPx padding in pixels unit
25 | */
26 |
27 | constructor(paddingPx: Int) {
28 | setPaddingPx(paddingPx)
29 | }
30 |
31 | /**
32 | * Create a credit card formatter with no max length and a padding of 1 em (depends on text size).
33 | *
34 | * The padding is not automatically updated if the text size or typeface are changed in the textview).
35 | *
36 | * @param textView the widget you want to format
37 | */
38 |
39 | constructor(textView: TextView) {
40 | setPaddingEm(textView, 1f)
41 | }
42 |
43 | /**
44 | * Create a credit card formatter with no max length and a padding specified in em (depends on text size).
45 | *
46 | * The padding is not automatically updated if the text size or typeface are changed in the textview).
47 | *
48 | * @param textView the widget you want to format
49 | * @param paddingEm padding in em unit (character size unit)
50 | */
51 |
52 | constructor(textView: TextView, paddingEm: Float) {
53 | setPaddingEm(textView, paddingEm)
54 | }
55 |
56 | /**
57 | * Create a credit card formatter with no max length and a padding specified in SP Unit (depends on the scale applied to text).
58 | *
59 | * @param context any Context
60 | * @param paddingSp the padding in SP unit
61 | */
62 | constructor(context: Context, paddingSp: Float) {
63 | setPaddingSp(context, paddingSp)
64 | }
65 |
66 | /**
67 | * Change the padding, do not take effect until next text change
68 | *
69 | * @param paddingPx padding in pixels unit
70 | */
71 | fun setPaddingPx(paddingPx: Int) {
72 | this.paddingPx = paddingPx
73 | }
74 |
75 | /**
76 | * Change the padding, do not take effect until next text change
77 | *
78 | * @param textView the widget you want to format
79 | * @param em padding in em unit (character size unit)
80 | */
81 | fun setPaddingEm(textView: TextView, em: Float) {
82 | val emSize = textView.paint.measureText("x")
83 | setPaddingPx((em * emSize).toInt())
84 | }
85 |
86 | /**
87 | * Change the padding, do not take effect until next text change
88 | *
89 | * @param context any Context
90 | * @param paddingSp the padding in SP unit
91 | */
92 | fun setPaddingSp(context: Context, paddingSp: Float) {
93 | setPaddingPx(
94 | TypedValue.applyDimension(
95 | TypedValue.COMPLEX_UNIT_SP,
96 | paddingSp,
97 | context.resources.displayMetrics
98 | )
99 | .toInt()
100 | )
101 | }
102 |
103 | /**
104 | * Change maxLength of the credit card number, does not take effect until next text change
105 | *
106 | * @param maxLength new max length
107 | */
108 | fun setMaxLength(maxLength: Int) {
109 | this.maxLength = maxLength
110 | }
111 |
112 | override fun beforeTextChanged(s: CharSequence?, start: Int, count: Int, after: Int) {}
113 |
114 | override fun onTextChanged(s: CharSequence?, start: Int, before: Int, count: Int) {}
115 |
116 | override fun afterTextChanged(s: Editable?) {
117 | if (internalStopFormatFlag) {
118 | return
119 | }
120 | internalStopFormatFlag = true
121 | CreditCardFormatTextWatcher.formatCardNumber(s!!, paddingPx, maxLength)
122 | internalStopFormatFlag = false
123 | }
124 |
125 | /**
126 | * Format the provided widget card number (useful if you want to reformat it after changing padding)
127 | *
128 | * @param textView the widget containing the credit card number
129 | */
130 | fun formatCardNumber(textView: TextView) {
131 | afterTextChanged(textView.editableText)
132 | }
133 |
134 |
135 | companion object {
136 |
137 | private const val NO_MAX_LENGTH = -1
138 |
139 | fun formatCardNumber(ccNumber: Editable, paddingPx: Int) {
140 | CreditCardFormatTextWatcher.formatCardNumber(
141 | ccNumber,
142 | paddingPx,
143 | CreditCardFormatTextWatcher.NO_MAX_LENGTH
144 | )
145 | }
146 |
147 | fun formatCardNumber(ccNumber: Editable, paddingPx: Int, maxLength: Int) {
148 | val textLength = ccNumber.length
149 | // first remove any previous span
150 | val spans: Array = ccNumber.getSpans(
151 | 0, ccNumber.length,
152 | CreditCardFormatTextWatcher.PaddingRightSpan::class.java
153 | )
154 | for (i in spans.indices) {
155 | ccNumber.removeSpan(spans[i])
156 | }
157 | // then truncate to max length
158 | if (maxLength > 0 && textLength > maxLength - 1) {
159 | ccNumber.replace(maxLength, textLength, "")
160 | }
161 | // finally add margin spans
162 | for (i in 1..(textLength - 1) / 4) {
163 | val end = i * 4
164 | val start = end - 1
165 | val marginSPan = CreditCardFormatTextWatcher.PaddingRightSpan(paddingPx)
166 | ccNumber.setSpan(marginSPan, start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE)
167 | }
168 | }
169 | }
170 |
171 | class PaddingRightSpan(private val mPadding: Int) : ReplacementSpan() {
172 | override fun getSize(
173 | paint: Paint,
174 | text: CharSequence,
175 | start: Int,
176 | end: Int,
177 | fm: FontMetricsInt?
178 | ): Int {
179 | val widths = FloatArray(end - start)
180 | paint.getTextWidths(text, start, end, widths)
181 | var sum = mPadding
182 | for (i in widths.indices) {
183 | sum += widths[i].toInt()
184 | }
185 | return sum
186 | }
187 |
188 | override fun draw(
189 | canvas: Canvas,
190 | text: CharSequence,
191 | start: Int,
192 | end: Int,
193 | x: Float,
194 | top: Int,
195 | y: Int,
196 | bottom: Int,
197 | paint: Paint
198 | ) {
199 | canvas.drawText(text, start, end, x, y.toFloat(), paint)
200 | }
201 | }
202 | }
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
10 |
13 |
14 |
15 |
20 |
21 |
24 |
25 |
28 |
29 |
38 |
39 |
44 |
45 |
46 |
47 |
57 |
58 |
65 |
66 |
67 |
68 |
74 |
75 |
87 |
88 |
94 |
95 |
96 |
97 |
109 |
110 |
117 |
118 |
119 |
120 |
130 |
131 |
140 |
141 |
157 |
158 |
169 |
170 |
180 |
181 |
182 |
183 |
--------------------------------------------------------------------------------