1. 程式人生 > >Beta階段沖刺 Day4

Beta階段沖刺 Day4

img 開發 寫上 相關 out ima 不足 退出 mat

1、提供當天站立式會議照片一張

技術分享圖片

2、討論項目每個成員的昨天進展

成員 昨天進展
毛卓 總結寫博客
林健 備註功能開發
黃紹樺 備註功能開發
曾飛遠 歷史記錄的刪除功能完善
張文博 修復一部分bug
周穎強

3、討論項目每個成員的存在問題

成員 存在問題
毛卓 更不上隊友進度
林健 編程遇到瓶頸,相關知識有點不熟悉
黃紹樺 備註功能需要用到數據庫,有關知識有點忘記
曾飛遠 菜單功能仍未完全完善,需要再做修改
張文博 還有好多沒有完成
周穎強

4、討論項目每個成員的今天安排

成員 今天安排
毛卓 適當加入今天的開發
林健 備註功能開發
黃紹樺 備註功能開發
曾飛遠 優化界面
張文博 用戶反饋
周穎強

5、每個人的具體貢獻

成員 個人具體貢獻
毛卓 總結 寫博客
林健 初步完成備註功能
黃紹樺 初步完成備註功能
曾飛遠 增加了側拉菜單功能
張文博 匯總了用戶反饋技術分享圖片
周穎強

6、發布項目燃盡圖

技術分享圖片

7、每人的代碼/文檔簽入記錄 要求給出簽入的截圖和issues的鏈接

技術分享圖片

8、最新模塊的代碼

主界面增加側拉菜單

<!--側拉菜單DrawerLayout-->
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@mipmap/tupian3"
    android:orientation="vertical"
    tools:context="com.example.haoge.study_expressage.Activity.MainActivity">
    
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:layout_marginTop="110dp"
            android:orientation="horizontal">

            <ImageView
                android:id="@+id/iv_saomiao"
                android:layout_width="40dp"
                android:layout_height="40dp"
                android:layout_weight="0.2"
                android:src="@mipmap/saomiao2" />

            <EditText
                android:id="@+id/edt_number"
                android:layout_width="200dp"
                android:layout_height="40dp"
                android:layout_weight="0.6"
                android:gravity="center"
                android:hint="請輸入快遞單號"
                android:textSize="15dp" />

            <ImageView
                android:id="@+id/yuyin"
                android:layout_width="40dp"
                android:layout_height="40dp"
                android:layout_marginRight="10dp"
                android:layout_weight="0.2"
                android:src="@mipmap/yuying2" />
        </LinearLayout>

        <Button
            android:id="@+id/btn_search"
            android:layout_width="140dp"
            android:layout_height="40dp"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="20dp"
            android:background="@drawable/shape_btn"
            android:text="查詢"
            android:textSize="20sp" />
    </LinearLayout>


    <!--另寫一個菜單模塊與主界面區分,
    並設置android:layout_gravity="start",start表示從左到右拉出-->
    <LinearLayout
        android:layout_width="250dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:orientation="vertical">
        
        <Button
            android:id="@+id/btn_history"
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:drawableLeft="@mipmap/menu_history"
            android:gravity="center"
            android:text="歷史記錄"
            android:textSize="25sp" />

        <Button
            android:id="@+id/btn_exit"
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:drawableLeft="@mipmap/menu_exit"
            android:gravity="center"
            android:text="退出菜單"
            android:textSize="25sp" />
    </LinearLayout>

</android.support.v4.widget.DrawerLayout>

9、運行結果的截圖

  • 主界面

技術分享圖片

技術分享圖片

  • 備註界面,寫上備註
    技術分享圖片

  • 歷史界面,
    技術分享圖片

10、每日每人總結

成員 個人總結
毛卓 慢慢的熟悉團隊項目,希望可以再團隊扮演更重要的角色
林健 初步完成了備註功能,還算順利
黃紹樺 今天完成了備註功能返回給些小bug,看看後期測試在改善
曾飛遠 將主界面做了優化,增加了側拉菜單功能,將多余選項放進,是主界面更加簡潔美觀
張文博 編寫了用戶調查報告,了解了客戶需求和我們的不足,會反饋給組員
周穎強

Beta階段沖刺 Day4