-
-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FEATURE :: Update Background Keyboard #64
Conversation
…develop/update-background-keyboard # Conflicts: # README.md
@@ -1,4 +1,4 @@ | |||
package com.frogobox.appkeyboard.ui.detail | |||
package com.frogobox.appkeyboard.ui.test |
Check warning
Code scanning / detekt
Checks whether files end with a line separator. Warning test
@@ -1,25 +1,25 @@ | |||
package com.frogobox.appkeyboard.ui.detail | |||
package com.frogobox.appkeyboard.ui.test |
Check warning
Code scanning / detekt
Checks whether files end with a line separator. Warning test
val a = res.obtainAttributes(Xml.asAttributeSet(parser), R.styleable.KwKeyboard) | ||
mDefaultWidth = getDimensionOrFraction(a, R.styleable.KwKeyboard_keyWidth, mDisplayWidth, mDisplayWidth / 10) | ||
val a = res.obtainAttributes(Xml.asAttributeSet(parser), R.styleable.FrogoKeyboard) | ||
mDefaultWidth = getDimensionOrFraction(a, R.styleable.FrogoKeyboard_keyWidth, mDisplayWidth, mDisplayWidth / 10) |
Check warning
Code scanning / detekt
Report magic numbers. Magic number is a numeric literal that is not defined as a constant and hence it's unclear what the purpose of this number is. It's better to declare such numbers as constants and give them a proper name. By default, -1, 0, 1, and 2 are not considered to be magic numbers. Warning
isAntiAlias = true | ||
textSize = keyTextSize.toFloat() | ||
textAlign = Align.CENTER | ||
alpha = 255 |
Check warning
Code scanning / detekt
Report magic numbers. Magic number is a numeric literal that is not defined as a constant and hence it's unclear what the purpose of this number is. It's better to declare such numbers as constants and give them a proper name. By default, -1, 0, 1, and 2 are not considered to be magic numbers. Warning
No description provided.