![]()
Test your memory span and try to improve your score over time. Your memory span is the number of items you can repeat back in correct order immediately after presentation. With this game you can test your memory span with:
To open memory span from your own app and get back the score as a String:
Intent uri = Intent.parseUri("http://liuto-apps.com/memory/?game=0&number_of_symbols=1&number_of_repetitions=2");
startActivityForResult(uri, 1);
or with
Intent i = new Intent();
i.putExtra("game", 0);
i.putExtra("number_of_symbols", 1);
i.putExtra("number_of_repetitions", 2);
i.setAction("com.liutoapps.android.memory.custom");
startActivityForResult(i, 1);
game:
The returned String will be something like 10, 6, 4. Where 10 is the total score, 6 the score of the first round (normal order of symbols) and 4 the score for the second round (reversed order of symbols).