mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 09:52:16 -05:00
. Replaced 'Reply All' with 'Delete' button in message view
This commit is contained in:
parent
7f81a1ed5d
commit
f5c4982c1d
@ -55,8 +55,8 @@
|
||||
android:layout_width="0dip"
|
||||
android:layout_weight="1" />
|
||||
<Button
|
||||
android:id="@+id/reply_all"
|
||||
android:text="@string/reply_all_action"
|
||||
android:id="@+id/delete"
|
||||
android:text="@string/delete_action"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="0dip"
|
||||
android:layout_weight="1" />
|
||||
|
@ -302,7 +302,7 @@ public class MessageView extends Activity
|
||||
mAttachmentIcon.setVisibility(View.GONE);
|
||||
|
||||
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.show_pictures).setOnClickListener(this);
|
||||
|
||||
@ -518,8 +518,8 @@ public class MessageView extends Activity
|
||||
case R.id.reply:
|
||||
onReply();
|
||||
break;
|
||||
case R.id.reply_all:
|
||||
onReplyAll();
|
||||
case R.id.delete:
|
||||
onDelete();
|
||||
break;
|
||||
case R.id.forward:
|
||||
onForward();
|
||||
|
Loading…
Reference in New Issue
Block a user