List of Android Commands ?

Monkey Targets Forums/Android/List of Android Commands ?

Drex(Posted 2014) [#1]
Hi,

Where can I find a full list of commands for Android ?

Thanks :)


MikeHart(Posted 2014) [#2]
The Monkez language is platform independant. Same goes for Mojo. A few BRL modules are platforum specific but the help file states that. So have a look inside the help files to see if a command is not supported on Android.


Drex(Posted 2014) [#3]
I mean the one's that are specific to android devices in general ?

Like,bringing up the key pad,screen orientation etc.


Wylaryzel(Posted 2014) [#4]
What you ask for is two-folded.
Screen orientation is part of the App-settting and can be found under programming -> App config settings in the help docs.

The keyboard can be enabled/disabled using EnableKeyboard() and DisableKeyboard() and is part of the mojo.input

As most functions/settings can be used independend of the plattform, there is no 'specific' android function/settings section.

BR


Gerry Quinn(Posted 2014) [#5]
Indeed, it's kind of the idea of mojo - and Monkey as it comes out of the box - that it be identical on every platform as far as possible. (And it pretty much achieves that, IMO.)

So for Android specific stuff, look in BRL, and the modules and code section, and Android discussion forum.


Drex(Posted 2014) [#6]
ok, I understand now.

Thanks :)