1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-27 11:42:16 -05:00

. Replaced 'Reply All' with 'Delete' button in message view

This commit is contained in:
Bao-Long Nguyen-Trong 2008-12-21 17:44:18 +00:00
parent 7f81a1ed5d
commit f5c4982c1d
2 changed files with 15 additions and 15 deletions

View File

@ -55,8 +55,8 @@
android:layout_width="0dip" android:layout_width="0dip"
android:layout_weight="1" /> android:layout_weight="1" />
<Button <Button
android:id="@+id/reply_all" android:id="@+id/delete"
android:text="@string/reply_all_action" android:text="@string/delete_action"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="0dip" android:layout_width="0dip"
android:layout_weight="1" /> android:layout_weight="1" />

View File

@ -302,7 +302,7 @@ public class MessageView extends Activity
mAttachmentIcon.setVisibility(View.GONE); mAttachmentIcon.setVisibility(View.GONE);
findViewById(R.id.reply).setOnClickListener(this); findViewById(R.id.reply).setOnClickListener(this);
findViewById(R.id.reply_all).setOnClickListener(this); findViewById(R.id.delete).setOnClickListener(this);
findViewById(R.id.forward).setOnClickListener(this); findViewById(R.id.forward).setOnClickListener(this);
findViewById(R.id.show_pictures).setOnClickListener(this); findViewById(R.id.show_pictures).setOnClickListener(this);
@ -518,8 +518,8 @@ public class MessageView extends Activity
case R.id.reply: case R.id.reply:
onReply(); onReply();
break; break;
case R.id.reply_all: case R.id.delete:
onReplyAll(); onDelete();
break; break;
case R.id.forward: case R.id.forward:
onForward(); onForward();