mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 18:02:15 -05:00
Undoing erroneous and not-agreed-upon removal of buttons in the message view
This commit is contained in:
parent
68a2763f39
commit
a49fc1c0a0
@ -42,4 +42,29 @@
|
|||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
|
<LinearLayout
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="57px"
|
||||||
|
android:background="@drawable/ic_email_thread_open_bottom_default"
|
||||||
|
android:gravity="center_vertical">
|
||||||
|
<Button
|
||||||
|
android:id="@+id/reply"
|
||||||
|
android:text="@string/reply_action"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_width="0dip"
|
||||||
|
android:layout_weight="1" />
|
||||||
|
<Button
|
||||||
|
android:id="@+id/reply_all"
|
||||||
|
android:text="@string/reply_all_action"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_width="0dip"
|
||||||
|
android:layout_weight="1" />
|
||||||
|
<Button
|
||||||
|
android:id="@+id/delete"
|
||||||
|
android:text="@string/delete_action"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_width="0dip"
|
||||||
|
android:layout_weight="1" />
|
||||||
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
@ -288,6 +288,10 @@ public class MessageView extends Activity
|
|||||||
mMessageContentView.setVerticalScrollBarEnabled(false);
|
mMessageContentView.setVerticalScrollBarEnabled(false);
|
||||||
mAttachments.setVisibility(View.GONE);
|
mAttachments.setVisibility(View.GONE);
|
||||||
mAttachmentIcon.setVisibility(View.GONE);
|
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.show_pictures).setOnClickListener(this);
|
findViewById(R.id.show_pictures).setOnClickListener(this);
|
||||||
|
|
||||||
// UrlInterceptRegistry.registerHandler(this);
|
// UrlInterceptRegistry.registerHandler(this);
|
||||||
@ -499,6 +503,15 @@ public class MessageView extends Activity
|
|||||||
|
|
||||||
public void onClick(View view) {
|
public void onClick(View view) {
|
||||||
switch (view.getId()) {
|
switch (view.getId()) {
|
||||||
|
case R.id.reply:
|
||||||
|
onReply();
|
||||||
|
break;
|
||||||
|
case R.id.reply_all:
|
||||||
|
onReplyAll();
|
||||||
|
break;
|
||||||
|
case R.id.delete:
|
||||||
|
onDelete();
|
||||||
|
break;
|
||||||
case R.id.next:
|
case R.id.next:
|
||||||
onNext();
|
onNext();
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user