|
|
|
@ -12,38 +12,6 @@
|
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/waiting_on_me"
|
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
|
android:layout_height="43dip"
|
|
|
|
|
android:padding="5dip"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
android:background="?attr/asMembersHeaderBackground">
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/wom_message"
|
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/wom_dismiss"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
|
android:layout_marginRight="5dip"
|
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
|
android:background="#707070"
|
|
|
|
|
android:text="@string/wom_dismiss"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/wom_acknowledge"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
|
android:background="?attr/asThemeTextColor"
|
|
|
|
|
android:text="@string/wom_acknowledge"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<com.todoroo.astrid.ui.NestableScrollView
|
|
|
|
|
android:id="@+id/edit_scroll"
|
|
|
|
|
style="@style/Content_EditScroll"
|
|
|
|
@ -58,6 +26,60 @@
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:padding="10dip" >
|
|
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:id="@+id/waiting_on_me"
|
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginBottom="10dip"
|
|
|
|
|
android:padding="10dip"
|
|
|
|
|
android:visibility="visible"
|
|
|
|
|
style="@style/EditRow">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/wom_icon"
|
|
|
|
|
android:layout_marginRight="10dip"
|
|
|
|
|
android:layout_width="20dip"
|
|
|
|
|
android:layout_height="20dip"
|
|
|
|
|
android:scaleType="fitCenter"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/wom_message"
|
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginBottom="10dip"
|
|
|
|
|
android:layout_toRightOf="@id/wom_icon"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/wom_acknowledge"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
|
android:layout_below="@id/wom_message"
|
|
|
|
|
android:layout_marginRight="10dip"
|
|
|
|
|
android:layout_alignLeft="@id/wom_message"
|
|
|
|
|
android:paddingLeft="3dip"
|
|
|
|
|
android:paddingRight="3dip"
|
|
|
|
|
android:paddingTop="1dip"
|
|
|
|
|
android:paddingBottom="1dip"
|
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
|
android:background="?attr/asThemeTextColor"
|
|
|
|
|
android:text="@string/wom_acknowledge"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/wom_dismiss"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
|
android:layout_marginRight="5dip"
|
|
|
|
|
android:layout_toRightOf="@id/wom_acknowledge"
|
|
|
|
|
android:layout_below="@id/wom_message"
|
|
|
|
|
android:paddingLeft="3dip"
|
|
|
|
|
android:paddingRight="3dip"
|
|
|
|
|
android:paddingTop="1dip"
|
|
|
|
|
android:paddingBottom="1dip"
|
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
|
android:background="#707070"
|
|
|
|
|
android:text="@string/wom_dismiss"/>
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/title_controls"
|
|
|
|
|
style="@style/EditRow"
|
|
|
|
|