To ease and simplify settings entry, it would be great to use a multi-line text field so the user can just cut and paste from a .TXT file to enter text that the app would parse.
Is there a way to do that ?
Thanks
To ease and simplify settings entry, it would be great to use a multi-line text field so the user can just cut and paste from a .TXT file to enter text that the app would parse.
Is there a way to do that ?
Thanks
There isn't a way to do that, but what some devs (including myself) have done is provide one or more string fields that accept settings which have been encoded into a compact format by a companion web app (or some other kind of app).
The downsides are:
- These encoded strings are pretty much write only
- You can't change settings without the companion app (e.g. on the run)
- The max length of settings strings has varied from platform to platform (e.g. Garmin Connect Mobile iOS vs Garmin Express)
For cases when devs have wanted to support multi-line literal text for things like a notes app, I've seen two approaches:
- Just have one string setting per line
- Ask users to insert a literal "\n" in their text to signify a newline (I *think* I've seen this for a notes app)
For anyone who's interested, here's the related bug report from over two years ago:
Either way, there's no multiline text settings.
(We don't even have multiline settings labels.)