diff --git a/res/layout/message_compose.xml b/res/layout/message_compose.xml index bc8d89d39..2cafb2428 100644 --- a/res/layout/message_compose.xml +++ b/res/layout/message_compose.xml @@ -237,15 +237,16 @@ android:textColor="@android:color/primary_text_light" android:textAppearance="?android:attr/textAppearanceMedium" /> - + android:layout_alignParentRight="true" /> No email address could be found. Some attachments were not downloaded. They will be downloaded automatically before this message is sent. Some attachments cannot be forwarded because they have not been downloaded. - + Quote message From: %s <%s> @@ -1052,4 +1052,5 @@ Welcome to K-9 Mail setup. K-9 is an open source mail client for Android origin Save attachments to... Save attachment No file browser found. Where would you like to save this attachment? + diff --git a/src/com/fsck/k9/activity/MessageCompose.java b/src/com/fsck/k9/activity/MessageCompose.java index ac94139db..d9ed28141 100644 --- a/src/com/fsck/k9/activity/MessageCompose.java +++ b/src/com/fsck/k9/activity/MessageCompose.java @@ -38,6 +38,7 @@ import android.view.View.OnFocusChangeListener; import android.view.Window; import android.webkit.WebView; import android.widget.AutoCompleteTextView.Validator; +import android.widget.Button; import android.widget.CheckBox; import android.widget.EditText; import android.widget.ImageButton; @@ -179,7 +180,7 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc private EditText mSignatureView; private EditText mMessageContentView; private LinearLayout mAttachments; - private ImageButton mQuotedTextShow; + private Button mQuotedTextShow; private View mQuotedTextBar; private ImageButton mQuotedTextEdit; private ImageButton mQuotedTextDelete; @@ -399,7 +400,7 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc mMessageContentView = (EditText)findViewById(R.id.message_content); mMessageContentView.getInputExtras(true).putBoolean("allowEmoji", true); mAttachments = (LinearLayout)findViewById(R.id.attachments); - mQuotedTextShow = (ImageButton)findViewById(R.id.quoted_text_show); + mQuotedTextShow = (Button)findViewById(R.id.quoted_text_show); mQuotedTextBar = findViewById(R.id.quoted_text_bar); mQuotedTextEdit = (ImageButton)findViewById(R.id.quoted_text_edit); mQuotedTextDelete = (ImageButton)findViewById(R.id.quoted_text_delete);