第三次迭代目标完成情况如下:
首先是订单界面的设计如下:

主要XML代码是:
<FrameLayout xmlns:android="
http://schemas.android.com/apk/res/android" xmlns:tools="
http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.edg.foodie.fragment.OrderFragment"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/colorPrimary" android:id="@+id/rl" > <Button android:layout_width="178dp" android:layout_height="wrap_content" android:text="未完成订单" android:textSize="20dp" android:textColor="@color/text_white" android:id="@+id/Nofinshbutton" android:background="@color/colorPrimary" /> <Button android:layout_width="178dp" android:layout_height="wrap_content" android:background="@color/colorPrimary" android:textSize="20dp" android:textColor="@color/text_white" android:text="已完成订单" android:layout_alignParentRight="true" android:layout_toRightOf="@id/Nofinshbutton" android:id="@+id/Finshbutton" /> </RelativeLayout> <ListView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id
st_allorder"> </ListView> </LinearLayout></FrameLayout>
由于我认领的部分较为简单,是自己能完成的能力范围之内,所以在完成的过程中没遇到什么特别难解决的问题。
总的来说进行的还算顺利!
第三次迭代目标完成情况以及感想
原文:http://www.cnblogs.com/weijing44/p/6863176.html