Skip to content

Commit

Permalink
asas
Browse files Browse the repository at this point in the history
  • Loading branch information
shalinbshah committed Feb 2, 2014
1 parent 1f4baae commit 1f76256
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
Binary file not shown.
Binary file not shown.
9 changes: 3 additions & 6 deletions src/com/call/tracker/voicenotes/VoiceDetailsActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,18 +70,15 @@ public void onClick(View v) {
butUrgent.setTag(1);
textViewUr
.setText(R.string.this_voice_note_is_marked_as_urgent);
AppMsg appMsg = AppMsg
.makeText(VoiceDetailsActivity.this,
"This Voice Note is Now Urgent",
AppMsg.STYLE_ALERT);
AppMsg appMsg = AppMsg.makeText(VoiceDetailsActivity.this,
"This Voice Note is Urgent", AppMsg.STYLE_ALERT);
appMsg.setLayoutGravity(Gravity.BOTTOM);
appMsg.show();
} else {
butUrgent.setTag(0);
butUrgent.setBackgroundResource(R.drawable.icon_alert_grey);
AppMsg appMsg = AppMsg.makeText(VoiceDetailsActivity.this,
"This Voice Note is Now Not Urgent",
AppMsg.STYLE_INFO);
"This Voice Note is Not Urgent", AppMsg.STYLE_INFO);
appMsg.setLayoutGravity(Gravity.BOTTOM);
appMsg.show();
textViewUr
Expand Down

0 comments on commit 1f76256

Please sign in to comment.