mirror of
https://github.com/SimpleMobileTools/Simple-Keyboard.git
synced 2025-04-13 09:52:44 +02:00
removing some unused constants
This commit is contained in:
parent
c0fa39747e
commit
52d6f86277
@ -206,16 +206,6 @@ class MyKeyboard {
|
|||||||
* @attr ref android.R.styleable#Keyboard_Key_keyEdgeFlags
|
* @attr ref android.R.styleable#Keyboard_Key_keyEdgeFlags
|
||||||
*/
|
*/
|
||||||
class Key(parent: Row) {
|
class Key(parent: Row) {
|
||||||
companion object {
|
|
||||||
private val KEY_STATE_NORMAL = intArrayOf()
|
|
||||||
private val KEY_STATE_NORMAL_ON = intArrayOf(android.R.attr.state_checkable, android.R.attr.state_checked)
|
|
||||||
private val KEY_STATE_NORMAL_OFF = intArrayOf(android.R.attr.state_checkable)
|
|
||||||
|
|
||||||
private val KEY_STATE_PRESSED = intArrayOf(android.R.attr.state_pressed)
|
|
||||||
private val KEY_STATE_PRESSED_ON = intArrayOf(android.R.attr.state_pressed, android.R.attr.state_checkable, android.R.attr.state_checked)
|
|
||||||
private val KEY_STATE_PRESSED_OFF = intArrayOf(android.R.attr.state_pressed, android.R.attr.state_checkable)
|
|
||||||
}
|
|
||||||
|
|
||||||
/** All the key codes (unicode or custom code) that this key could generate, zero'th being the most important. */
|
/** All the key codes (unicode or custom code) that this key could generate, zero'th being the most important. */
|
||||||
var codes = ArrayList<Int>()
|
var codes = ArrayList<Int>()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user