Fix issues

This commit is contained in:
Victor Shcherb 2013-07-25 21:54:34 +02:00
parent 609880f9f0
commit 2f2c79ea5a
2 changed files with 18 additions and 28 deletions

View file

@ -421,7 +421,7 @@
</string>
<string name="tip_initial">Поради</string>
<string name="tip_initial_t">\tOsmAnd - навігаційна програма з великими можливостями.
\n\tВ якості базового курсу, на головному екрані з’являтимуться деякі поради щодо використання та рекомендації (див. \ '? \').
\n\tВ якості базового курсу, на головному екрані з\’являтимуться деякі поради щодо використання та рекомендації (див. \'? \').
</string>
<string name="next_button">Наступний</string>
<string name="previous_button">Попередній</string>

View file

@ -55,48 +55,38 @@ public class SettingsAudioVideoActivity extends SettingsBaseActivity {
// show in menu only suppoted modes:
final Camera cam = openCamera();
Parameters parameters = cam.getParameters();
List<String> sfm=parameters.getSupportedFocusModes ();
List<String> items=new ArrayList <String>();
List<Integer> itemsValues=new ArrayList <Integer>();
List<String> sfm = parameters.getSupportedFocusModes();
List<String> items = new ArrayList<String>();
List<Integer> itemsValues = new ArrayList<Integer>();
// filtering known types for translate and set index:
for(int index=0;index<sfm.size();index++)
{
if(sfm.get(index).equals("auto"))
{
for (int index = 0; index < sfm.size(); index++) {
if (sfm.get(index).equals("auto")) {
items.add(getString(R.string.av_camera_focus_auto));
itemsValues.add(AV_CAMERA_FOCUS_AUTO);
}
else if(sfm.get(index).equals("fixed"))
{
} else if (sfm.get(index).equals("fixed")) {
items.add(getString(R.string.av_camera_focus_hiperfocal));
itemsValues.add(AV_CAMERA_FOCUS_HIPERFOCAL);
}
else if(sfm.get(index).equals("edof"))
{
} else if (sfm.get(index).equals("edof")) {
items.add(getString(R.string.av_camera_focus_edof));
itemsValues.add(AV_CAMERA_FOCUS_EDOF);
}
else if(sfm.get(index).equals("infinity"))
{
} else if (sfm.get(index).equals("infinity")) {
items.add(getString(R.string.av_camera_focus_infinity));
itemsValues.add(AV_CAMERA_FOCUS_INFINITY);
}
else if(sfm.get(index).equals("macro"))
{
} else if (sfm.get(index).equals("macro")) {
items.add(getString(R.string.av_camera_focus_macro));
itemsValues.add(AV_CAMERA_FOCUS_MACRO);
}
else if(sfm.get(index).equals("continuous-picture"))
{
} else if (sfm.get(index).equals("continuous-picture")) {
items.add(getString(R.string.av_camera_focus_continuous));
itemsValues.add(AV_CAMERA_FOCUS_CONTINUOUS);
}
}
entries=items.toArray(entries);
intValues=itemsValues.toArray(intValues);
ListPreference camFocus = createListPreference(p.AV_CAMERA_FOCUS_TYPE, entries, intValues, R.string.av_camera_focus,
R.string.av_camera_focus_descr);
grp.addPreference(camFocus);
entries = items.toArray(entries);
intValues = itemsValues.toArray(intValues);
if (entries.length > 0) {
ListPreference camFocus = createListPreference(p.AV_CAMERA_FOCUS_TYPE, entries, intValues, R.string.av_camera_focus,
R.string.av_camera_focus_descr);
grp.addPreference(camFocus);
}
// play sound on success photo:
grp.addPreference(createCheckBoxPreference(p.AV_PHOTO_PLAY_SOUND, R.string.av_photo_play_sound,
R.string.av_photo_play_sound_descr));