Correctly add a space between "Volume" and the status.

This commit is contained in:
2025-08-17 08:33:00 -07:00
parent 34b13473c9
commit bc433b4185
2 changed files with 2 additions and 2 deletions

View File

@@ -699,7 +699,7 @@ public class MainActivity extends AppCompatActivity {
int currVolume = audioManager.getStreamVolume(AudioManager.STREAM_MUSIC);
seekBar.setProgress(currVolume);
String volume = getString(R.string.tvSeekBar) + seekBar.getProgress() + "/" + seekBar.getMax();
String volume = getString(R.string.tvSeekBar) + " " + seekBar.getProgress() + "/" + seekBar.getMax();
tvSeekBar.setText(volume);
if (DEBUG) Log.d(tag, "Finished");

View File

@@ -36,5 +36,5 @@
<string name="action_enable_ads">Enable Ads</string>
<string name="action_exit">Exit</string>
<string name="tvSeekBar">Media Volume: </string>
<string name="tvSeekBar">Media Volume:</string>
</resources>