Merge pull request #7223 from osmandapp/profile_string_fixes
string res fixes #7205
This commit is contained in:
commit
3029a0a346
2 changed files with 2 additions and 1 deletions
|
@ -185,7 +185,7 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="60dp"
|
android:layout_height="60dp"
|
||||||
app:primaryColor="@color/active_color_primary_dark"
|
app:primaryColor="@color/active_color_primary_dark"
|
||||||
app:labelText="Navigation Type">
|
app:labelText="@string/nav_type_hint">
|
||||||
|
|
||||||
<studio.carbonylgroup.textfieldboxes.ExtendedEditText
|
<studio.carbonylgroup.textfieldboxes.ExtendedEditText
|
||||||
android:id="@+id/navigation_type_et"
|
android:id="@+id/navigation_type_et"
|
||||||
|
|
|
@ -15,6 +15,7 @@ public class SettingsProfileActivity extends OsmandActionBarActivity {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
setContentView(R.layout.single_fragment_layout);
|
setContentView(R.layout.single_fragment_layout);
|
||||||
getSupportActionBar().setElevation(5.0f);
|
getSupportActionBar().setElevation(5.0f);
|
||||||
|
getSupportActionBar().setTitle(R.string.application_profiles);
|
||||||
if (savedInstanceState == null) {
|
if (savedInstanceState == null) {
|
||||||
SettingsProfileFragment profileFragment = new SettingsProfileFragment();
|
SettingsProfileFragment profileFragment = new SettingsProfileFragment();
|
||||||
profileFragment.setArguments(getIntent().getExtras());
|
profileFragment.setArguments(getIntent().getExtras());
|
||||||
|
|
Loading…
Reference in a new issue