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:
parent
7f81a1ed5d
commit
f5c4982c1d
@ -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" />
|
||||||
|
@ -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();
|
||||||
|
Loading…
Reference in New Issue
Block a user