summaryrefslogtreecommitdiff
path: root/src/com
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2011-03-04 12:48:52 +0000
committerBen Murdoch <benm@google.com>2011-03-04 15:18:08 +0000
commit9913636a48ba71e91d45e6805bfe3e41ac877263 (patch)
treed7cc2e490174023b9acb1c40d6686913352d8d58 /src/com
parentb4a97c04432b3cbe6502a26673cd25c991196284 (diff)
downloadSoundRecorder-9913636a48ba71e91d45e6805bfe3e41ac877263.tar.gz
Remove "Press Record" text
Bug: 3498644 Change-Id: Iccac0e68ee0366d9e05d2abe268cbfddf6dbe2eb
Diffstat (limited to 'src/com')
-rw-r--r--src/com/android/soundrecorder/SoundRecorder.java9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/com/android/soundrecorder/SoundRecorder.java b/src/com/android/soundrecorder/SoundRecorder.java
index a138625..488697f 100644
--- a/src/com/android/soundrecorder/SoundRecorder.java
+++ b/src/com/android/soundrecorder/SoundRecorder.java
@@ -709,10 +709,8 @@ public class SoundRecorder extends Activity
mRecordButton.requestFocus();
mStateMessage1.setVisibility(View.INVISIBLE);
- mStateLED.setVisibility(View.VISIBLE);
- mStateLED.setImageResource(R.drawable.idle_led);
- mStateMessage2.setVisibility(View.VISIBLE);
- mStateMessage2.setText(res.getString(R.string.press_record));
+ mStateLED.setVisibility(View.INVISIBLE);
+ mStateMessage2.setVisibility(View.INVISIBLE);
mExitButtons.setVisibility(View.INVISIBLE);
mVUMeter.setVisibility(View.VISIBLE);
@@ -743,8 +741,7 @@ public class SoundRecorder extends Activity
if (mSampleInterrupted) {
mStateMessage2.setVisibility(View.VISIBLE);
mStateMessage2.setText(res.getString(R.string.recording_stopped));
- mStateLED.setImageResource(R.drawable.idle_led);
- mStateLED.setVisibility(View.VISIBLE);
+ mStateLED.setVisibility(View.INVISIBLE);
}
if (mErrorUiMessage != null) {