Correctly add a space between "Volume" and the status.
This commit is contained in:
@@ -699,7 +699,7 @@ public class MainActivity extends AppCompatActivity {
|
|||||||
int currVolume = audioManager.getStreamVolume(AudioManager.STREAM_MUSIC);
|
int currVolume = audioManager.getStreamVolume(AudioManager.STREAM_MUSIC);
|
||||||
seekBar.setProgress(currVolume);
|
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);
|
tvSeekBar.setText(volume);
|
||||||
|
|
||||||
if (DEBUG) Log.d(tag, "Finished");
|
if (DEBUG) Log.d(tag, "Finished");
|
||||||
|
Reference in New Issue
Block a user