Move arrival distance to Navigation settings
This commit is contained in:
parent
f416118e8f
commit
fc9476682b
2 changed files with 4 additions and 5 deletions
|
@ -20,6 +20,9 @@
|
|||
android:title="@string/keep_informing"
|
||||
android:summary="@string/keep_informing_descr" />
|
||||
<CheckBoxPreference android:title="@string/show_zoom_buttons_navigation" android:summary="@string/show_zoom_buttons_navigation_descr" android:key="show_zoom_buttons_navigation" />
|
||||
|
||||
<ListPreference
|
||||
android:key="arrival_distance_factor"
|
||||
android:title="@string/arrival_distance"
|
||||
android:summary="@string/arrival_distance_descr" />
|
||||
</PreferenceCategory>
|
||||
</PreferenceScreen>
|
||||
|
|
|
@ -84,10 +84,6 @@ public class SettingsAccessibilityActivity extends SettingsBaseActivity {
|
|||
cat.addPreference(createCheckBoxPreference(settings.ACCESSIBILITY_EXTENSIONS, R.string.accessibility_extensions,
|
||||
R.string.accessibility_extensions));
|
||||
}
|
||||
|
||||
Float[] arrivalValues = new Float[] {1.5f, 1f, 0.5f, 0.25f} ;
|
||||
String[] arrivalNames = getResources().getStringArray(R.array.arrival_distance_factors);
|
||||
cat.addPreference(createListPreference(settings.ARRIVAL_DISTANCE_FACTOR, arrivalNames, arrivalValues, R.string.arrival_distance, R.string.arrival_distance_descr));
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue