Fixup compose views.

Matches what I did for compose view 7" for gmail.

Change-Id: Ie7fc621ae6f6e0a50522fd6bd0f7296b14418e64
This commit is contained in:
Mindy Pereira 2012-04-30 13:07:23 -07:00
parent 0ec5d6f307
commit 222c1151b1
5 changed files with 15 additions and 6 deletions

View File

@ -31,7 +31,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingLeft="100dip">
android:paddingLeft="@dimen/compose_area_left_padding">
<LinearLayout android:id="@+id/content"
android:orientation="horizontal"
@ -50,9 +50,9 @@
<include layout="@layout/compose_area_recipients"/>
</LinearLayout>
<include layout="@layout/compose_area_buttons"/>
</LinearLayout>
<!-- Attachments -->
@ -62,7 +62,7 @@
android:layout_marginTop="8dip"
android:orientation="vertical"
android:visibility="gone"
android:layout_marginRight="100dip"
android:layout_marginRight="@dimen/compose_area_right_padding"
>
<!--
Empty container for storing attachments. We'll stick
@ -78,7 +78,7 @@
<!-- Compose Area -->
<FrameLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="100dip">
android:layout_marginRight="@dimen/compose_area_right_padding">
<include layout="@layout/compose_body"/>
@ -86,7 +86,7 @@
<RelativeLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="100dip">
android:layout_marginRight="@dimen/compose_area_right_padding">
<include layout="@layout/quoted_text"/>
</RelativeLayout>
<FrameLayout

View File

@ -36,4 +36,7 @@
<dimen name="setup_padding_left">64dip</dimen>
<dimen name="setup_padding_right">64dip</dimen>
<dimen name="compose_area_left_padding">100dip</dimen>
<dimen name="compose_area_right_padding">100dip</dimen>
<dimen name="compose_scrollview_width">800dip</dimen>
</resources>

View File

@ -38,4 +38,6 @@
<dimen name="setup_padding_left">32dip</dimen>
<dimen name="setup_padding_right">32dip</dimen>
<dimen name="compose_area_left_padding">76dip</dimen>
<dimen name="compose_area_right_padding">78dip</dimen>
</resources>

View File

@ -63,4 +63,7 @@
<dimen name="replystate_margin_top">10sp</dimen>
<dimen name="checkmark_margin_top">4sp</dimen>
<dimen name="star_margin_top">30sp</dimen>
<dimen name="compose_scrollview_width">600dip</dimen>
</resources>

View File

@ -24,5 +24,6 @@
<dimen name="mailbox_list_width">320dip</dimen>
<!-- width of the message list, on the message list + message view mode. -->
<dimen name="message_list_width">426dip</dimen>
<dimen name="compose_scrollview_width">700dip</dimen>
</resources>