Class: ChangeKeyboardAction
- Inherits:
-
DeviceSettingsAction
- Object
- MacroObject
- Action
- DeviceSettingsAction
- ChangeKeyboardAction
- Defined in:
- lib/ruby-macrodroid.rb
Overview
Category: Device Settings
Instance Attribute Summary
Attributes inherited from Action
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ ChangeKeyboardAction
constructor
A new instance of ChangeKeyboardAction.
Methods inherited from Action
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ ChangeKeyboardAction
Returns a new instance of ChangeKeyboardAction.
3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 |
# File 'lib/ruby-macrodroid.rb', line 3098 def initialize(h={}) = { keyboard_id: 'com.android.inputmethod.latin/.LatinIME', keyboard_name: 'Android Keyboard (AOSP)' } super(.merge h) end |