mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-24 08:38:51 -05:00
Removed bottom buttons in message view (reply, delete, etc...)
This commit is contained in:
parent
f66bc47763
commit
68a2763f39
@ -42,29 +42,4 @@
|
|||||||
|
|
||||||
</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,10 +288,6 @@ 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);
|
||||||
@ -503,15 +499,6 @@ 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