add newbie-info on turn-changed

This commit is contained in:
Andy2 2011-02-25 07:13:54 -08:00
parent 5e0f12e49d
commit 86274785dd
3 changed files with 14 additions and 1 deletions

View file

@ -56,6 +56,7 @@
<string name="key_notagain_conndmid">key_notagain_conndmid</string>
<string name="key_notagain_dicts">key_notagain_dicts</string>
<string name="key_notagain_arrow">key_notagain_arrow</string>
<string name="key_notagain_turnchanged">key_notagain_turnchanged</string>
<string name="relayids_extra">org.eehouse.android.xw4.relayids_extra</string>

View file

@ -505,6 +505,11 @@
time, to hide it. A checkbox in the Appearance section of
Settings will hide it permanently.</string>
<string name="not_again_turnchanged">The player whose turn it is
is drawn large in the scoreboard. Hold your finger on a name in
the scoreboard to get details about that player\'s most recent
move.</string>
<string name="relay_game_explainf">To start a basic networked two-player
game in %s:</string>

View file

@ -735,7 +735,14 @@ public class BoardActivity extends XWActivity {
public void turnChanged()
{
m_jniThread.handle( JNIThread.JNICmd.CMD_ZOOM, -8 );
m_handler.post( new Runnable() {
public void run() {
showNotAgainDlgThen( R.string.not_again_turnchanged,
R.string.key_notagain_turnchanged,
null );
}
} );
m_jniThread.handle( JNIThread.JNICmd. CMD_ZOOM, -8 );
}
public boolean engineProgressCallback()