Add language selected by engine display to Test voice activity

This commit is contained in:
sonora 2016-12-17 18:13:21 +01:00
parent 95cc2f82ca
commit 02bec66816

View file

@ -109,7 +109,7 @@ public class TestVoiceActivity extends OsmandActionBarActivity {
bld.setSingleChoiceItems(entrieValues, selected, new DialogInterface.OnClickListener() { bld.setSingleChoiceItems(entrieValues, selected, new DialogInterface.OnClickListener() {
@Override @Override
public void onClick(DialogInterface dialog, int which) { public void onClick(DialogInterface dialog, final int which) {
final OsmandApplication app = (OsmandApplication) getApplication(); final OsmandApplication app = (OsmandApplication) getApplication();
getSupportActionBar().setTitle(app.getString(R.string.test_voice_prompts) + " (" + entrieValues[which] + ")"); getSupportActionBar().setTitle(app.getString(R.string.test_voice_prompts) + " (" + entrieValues[which] + ")");
app.getSettings().VOICE_PROVIDER.set(entrieValues[which]); app.getSettings().VOICE_PROVIDER.set(entrieValues[which]);
@ -121,6 +121,8 @@ public class TestVoiceActivity extends OsmandActionBarActivity {
if (p == null) { if (p == null) {
Toast.makeText(TestVoiceActivity.this, "Voice player not initialized", Toast.LENGTH_SHORT).show(); Toast.makeText(TestVoiceActivity.this, "Voice player not initialized", Toast.LENGTH_SHORT).show();
} else { } else {
//Check which voice was set
getSupportActionBar().setTitle(app.getString(R.string.test_voice_prompts) + " (" + entrieValues[which] + ", " + p.getLanguage() + ")");
addButtons(ll, p); addButtons(ll, p);
} }
} }