diff options
| author | Jules Aguillon | 2023-04-02 13:28:10 +0200 |
|---|---|---|
| committer | Jules Aguillon | 2023-04-02 13:29:53 +0200 |
| commit | 351355b3a769d2b584733ad0e8924dfe75939fb6 (patch) | |
| tree | 9256361692887ea9cf82e14f33118062a936abd9 /res/values | |
| parent | 3caca59ff43e09578838d213b9c2f94c072b0832 (diff) | |
| download | unexpected-keyboard-351355b3a769d2b584733ad0e8924dfe75939fb6.tar.gz unexpected-keyboard-351355b3a769d2b584733ad0e8924dfe75939fb6.zip | |
Launcher activity: Input box
For trying the keyboard without having to mess with an other app.
Diffstat (limited to 'res/values')
| -rw-r--r-- | res/values/strings.xml | 3 | ||||
| -rw-r--r-- | res/values/styles.xml | 7 |
2 files changed, 9 insertions, 1 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index e6b1a8d..7b6e0df 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -73,7 +73,8 @@ <string name="key_action_prev">Prev</string> <string name="key_action_search">Search</string> <string name="key_action_send">Send</string> + <string name="launcher_button_imesettings">Enable keyboard</string> <string name="launcher_description">This application is a virtual keyboard. Go to the system settings by clicking on the button below and enable Unexpected-Keyboard.</string> <string name="launcher_sourcecode">This is an free and open source application. You can find the source code or report bugs on <a href="https://github.com/Julow/Unexpected-Keyboard/">Github</a>.</string> - <string name="launcher_button_imesettings">Enable keyboard</string> + <string name="launcher_tryhere">After enabling, you can try the keyboard here:</string> </resources> diff --git a/res/values/styles.xml b/res/values/styles.xml index 94a8551..d3283a7 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -24,4 +24,11 @@ <item name="android:textSize">@dimen/emoji_text_size</item> <item name="android:textColor">?attr/emoji_color</item> </style> + <style name="paragraph"> + <item name="android:layout_width">fill_parent</item> + <item name="android:layout_height">wrap_content</item> + <item name="android:layout_marginVertical">8dp</item> + <item name="android:layout_marginHorizontal">16dp</item> + <item name="android:layout_gravity">center</item> + </style> </resources> |
