0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-20 04:02:14 +02:00

Removed bottom buttons in message view (reply, delete, etc...)

This commit is contained in:
Brock Tice 2008-10-30 17:55:30 +00:00
parent f66bc47763
commit 68a2763f39
2 changed files with 0 additions and 38 deletions

View File

@ -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>

View File

@ -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;