Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
kewl.apps.dev1 committed Sep 1, 2019
1 parent 2d021b1 commit 4bd6660
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pinview/src/main/java/com/gamemalt/pinview/PinView.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private void setDefaultAttr(AttributeSet attrs) {
TypedArray typedArray = getContext().obtainStyledAttributes(attrs, R.styleable.PinView);
try {
imageClearBackground = typedArray.getResourceId(R.styleable.PinView_buttonClearBackground, R.drawable.v_back);
pinButtonBackground = typedArray.getResourceId(R.styleable.PinView_pinButtonBackground, R.color.transparent);
pinButtonBackground = typedArray.getResourceId(R.styleable.PinView_pinButtonBackground, android.R.color.transparent);
buttonTextColor = typedArray.getColor(R.styleable.PinView_buttonTextColor, Color.WHITE);
buttonTextSize = typedArray.getInt(R.styleable.PinView_buttonTextSize, 24);
isHapticFeedBack = typedArray.getBoolean(R.styleable.PinView_isHapticFeedBack, false);
Expand Down
1 change: 0 additions & 1 deletion pinview/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<resources>


<color name="transparent">#00000000</color>
<color name="pin_pad_button_ripple_color">#CDDC39</color>

</resources>

0 comments on commit 4bd6660

Please sign in to comment.