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 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.
2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 |
# File 'lib/ruby-macrodroid.rb', line 2951 def initialize(h={}) = { keyboard_id: 'com.android.inputmethod.latin/.LatinIME', keyboard_name: 'Android Keyboard (AOSP)' } super(.merge h) end |