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.
3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 |
# File 'lib/ruby-macrodroid.rb', line 3205 def initialize(h={}) = { keyboard_id: 'com.android.inputmethod.latin/.LatinIME', keyboard_name: 'Android Keyboard (AOSP)' } super(.merge h) end |