Merge "Expose cc/attachment actions on UI directly"
This commit is contained in:
commit
688f5355e3
BIN
res/drawable-hdpi/ic_menu_cc_holo_light.png
Normal file
BIN
res/drawable-hdpi/ic_menu_cc_holo_light.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
BIN
res/drawable-mdpi/ic_menu_cc_holo_light.png
Normal file
BIN
res/drawable-mdpi/ic_menu_cc_holo_light.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
@ -35,9 +35,16 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:visibility="gone"
|
||||
/>
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<com.android.email.activity.AddressTextView
|
||||
android:id="@+id/to" android:layout_width="match_parent"
|
||||
android:id="@+id/to"
|
||||
android:layout_width="0dip"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:textColor="?android:attr/textColorSecondary"
|
||||
android:layout_marginLeft="6dip"
|
||||
@ -45,6 +52,12 @@
|
||||
android:inputType="textEmailAddress|textMultiLine"
|
||||
android:imeOptions="actionNext"
|
||||
android:hint="@string/message_compose_to_hint" />
|
||||
<ImageView
|
||||
android:id="@+id/add_cc_bcc"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:src="@drawable/ic_menu_cc_holo_light" />
|
||||
</LinearLayout>
|
||||
<LinearLayout
|
||||
android:id="@+id/cc_bcc_container"
|
||||
android:layout_width="match_parent"
|
||||
@ -75,10 +88,16 @@
|
||||
android:hint="@string/message_compose_bcc_hint"
|
||||
/>
|
||||
</LinearLayout>
|
||||
<EditText android:id="@+id/subject"
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<EditText android:id="@+id/subject"
|
||||
android:layout_width="0dip"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:textColor="?android:attr/textColorSecondary"
|
||||
android:layout_marginLeft="6dip"
|
||||
android:layout_marginRight="6dip"
|
||||
@ -87,6 +106,12 @@
|
||||
="textEmailSubject|textAutoCorrect|textCapSentences|textMultiLine"
|
||||
android:imeOptions="actionNext"
|
||||
/>
|
||||
<ImageView
|
||||
android:id="@+id/add_attachment"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:src="@drawable/ic_attachment_holo_light" />
|
||||
</LinearLayout>
|
||||
<!--
|
||||
Empty container for storing attachments. We'll stick
|
||||
instances of message_compose_attachment.xml in here.
|
||||
|
@ -30,16 +30,6 @@
|
||||
android:showAsAction="ifRoom"
|
||||
android:alphabeticShortcut="d"
|
||||
/>
|
||||
<item
|
||||
android:id="@+id/add_cc_bcc"
|
||||
android:title="@string/add_cc_bcc_action"
|
||||
android:showAsAction="ifRoom"
|
||||
/>
|
||||
<item
|
||||
android:id="@+id/add_attachment"
|
||||
android:icon="@drawable/ic_attachment_holo_light"
|
||||
android:showAsAction="ifRoom"
|
||||
/>
|
||||
<item
|
||||
android:id="@+id/discard"
|
||||
android:title="@string/discard_action"
|
||||
|
@ -580,14 +580,11 @@ public class MessageCompose extends Activity implements OnClickListener, OnFocus
|
||||
mBccView.setTokenizer(new Rfc822Tokenizer());
|
||||
mBccView.setValidator(addressValidator);
|
||||
|
||||
final View addCcBccView = findViewById(R.id.add_cc_bcc); // xlarge only
|
||||
if (addCcBccView != null) {
|
||||
final View addCcBccView = UiUtilities.getView(this, R.id.add_cc_bcc);
|
||||
addCcBccView.setOnClickListener(this);
|
||||
}
|
||||
final View addAttachmentView = findViewById(R.id.add_attachment); // xlarge only
|
||||
if (addAttachmentView != null) {
|
||||
|
||||
final View addAttachmentView = UiUtilities.getView(this, R.id.add_attachment);
|
||||
addAttachmentView.setOnClickListener(this);
|
||||
}
|
||||
|
||||
setFocusShifter(R.id.to_label, R.id.to);
|
||||
setFocusShifter(R.id.cc_label, R.id.cc);
|
||||
|
Loading…
Reference in New Issue
Block a user