Android: Remove unnecessary getString calls

This commit is contained in:
Ryan Meredith 2020-09-08 06:14:58 -04:00
parent 3d33b1c2c5
commit 10e85ff40c
1 changed files with 7 additions and 7 deletions

View File

@ -857,9 +857,9 @@ public final class EmulationActivity extends AppCompatActivity
.putBoolean("buttonToggleWii" + indexSelected, isChecked)); .putBoolean("buttonToggleWii" + indexSelected, isChecked));
} }
} }
builder.setNeutralButton(getString(R.string.emulation_toggle_all), builder.setNeutralButton(R.string.emulation_toggle_all,
(dialogInterface, i) -> mEmulationFragment.toggleInputOverlayVisibility()); (dialogInterface, i) -> mEmulationFragment.toggleInputOverlayVisibility());
builder.setPositiveButton(getString(R.string.ok), (dialogInterface, i) -> builder.setPositiveButton(R.string.ok, (dialogInterface, i) ->
{ {
editor.apply(); editor.apply();
@ -893,7 +893,7 @@ public final class EmulationActivity extends AppCompatActivity
builder.setSingleChoiceItems(buttonList, currentValue, (DialogInterface dialog, int which) -> builder.setSingleChoiceItems(buttonList, currentValue, (DialogInterface dialog, int which) ->
editor.putInt("doubleTapButton", InputOverlayPointer.DOUBLE_TAP_OPTIONS.get(which))); editor.putInt("doubleTapButton", InputOverlayPointer.DOUBLE_TAP_OPTIONS.get(which)));
builder.setPositiveButton(getString(R.string.ok), (dialogInterface, i) -> builder.setPositiveButton(R.string.ok, (dialogInterface, i) ->
{ {
editor.commit(); editor.commit();
mEmulationFragment.initInputPointer(); mEmulationFragment.initInputPointer();
@ -938,7 +938,7 @@ public final class EmulationActivity extends AppCompatActivity
AlertDialog.Builder builder = new AlertDialog.Builder(this, R.style.DolphinDialogBase); AlertDialog.Builder builder = new AlertDialog.Builder(this, R.style.DolphinDialogBase);
builder.setTitle(R.string.emulation_control_scale); builder.setTitle(R.string.emulation_control_scale);
builder.setView(view); builder.setView(view);
builder.setPositiveButton(getString(R.string.ok), (dialogInterface, i) -> builder.setPositiveButton(R.string.ok, (dialogInterface, i) ->
{ {
SharedPreferences.Editor editor = mPreferences.edit(); SharedPreferences.Editor editor = mPreferences.edit();
editor.putInt("controlScale", seekbar.getProgress()); editor.putInt("controlScale", seekbar.getProgress());
@ -971,7 +971,7 @@ public final class EmulationActivity extends AppCompatActivity
NativeLibrary.ReloadWiimoteConfig(); NativeLibrary.ReloadWiimoteConfig();
}); });
builder.setPositiveButton(getString(R.string.ok), (dialogInterface, i) -> builder.setPositiveButton(R.string.ok, (dialogInterface, i) ->
{ {
editor.apply(); editor.apply();
mEmulationFragment.refreshInputOverlay(); mEmulationFragment.refreshInputOverlay();
@ -1004,7 +1004,7 @@ public final class EmulationActivity extends AppCompatActivity
NativeLibrary.ReloadWiimoteConfig(); NativeLibrary.ReloadWiimoteConfig();
}); });
builder.setPositiveButton(getString(R.string.ok), (dialogInterface, i) -> editor.apply()); builder.setPositiveButton(R.string.ok, (dialogInterface, i) -> editor.apply());
AlertDialog alertDialog = builder.create(); AlertDialog alertDialog = builder.create();
alertDialog.show(); alertDialog.show();
@ -1031,7 +1031,7 @@ public final class EmulationActivity extends AppCompatActivity
int orientation = orientationValues[indexSelected]; int orientation = orientationValues[indexSelected];
editor.putInt("emulationActivityOrientation", orientation); editor.putInt("emulationActivityOrientation", orientation);
}); });
builder.setPositiveButton(getString(R.string.ok), (dialogInterface, i) -> builder.setPositiveButton(R.string.ok, (dialogInterface, i) ->
{ {
editor.apply(); editor.apply();
updateOrientation(); updateOrientation();