一、每个人的工作

(1) 昨天已完成的工作

昨天的工作主要是一些界面的设计,我们顺利完成了复杂模式题目数目界面、复杂模式做题界面、结果统计界面的具体代码编写,和一些细节的完善。还有日常冲刺博客的编辑。

(2) 今天计划完成的工作;

今天将在昨天界面的基础上进行完善,并增加简单界面(包含简单界面内含的界面),简单模式与复杂模式的选择界面。还有日常冲刺从博客的撰写。

(3) 工作中遇到的困难;

今天测试界面的时候很意外在有一个队员的手机上不能正常安装使用,出现的界面是空白界面。重试了两遍都没办法解决这个问题,但重新安装第三次后,意外成功了。目前我们都还很困扰于这个问题,担心如果这样的问题出现在其他用户手机上,正常用户肯定不可能像我们一样重试这么多遍,一定会对APP的可用性产生怀疑。

(4) 每个人的贡献比


二、燃尽图

三、代码

选择简单和复杂模式界面

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" tools:context="com.example.asus.qq.MainActivity"> <android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteX="64dp"
tools:layout_editor_absoluteY="0dp"> <Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="简单"
tools:layout_editor_absoluteX="140dp"
tools:layout_editor_absoluteY="136dp"
android:onClick="onClickSim" /> <Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="复杂"
tools:layout_editor_absoluteX="140dp"
tools:layout_editor_absoluteY="230dp"
android:onClick="onClickFz" />
</android.support.constraint.ConstraintLayout>
</android.support.constraint.ConstraintLayout>

简单模式题目数目界面

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"> <android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"> <Button
android:id="@+id/button5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="确定"
tools:layout_editor_absoluteX="140dp"
tools:layout_editor_absoluteY="261dp"
android:onClick="onClickSim" /> <TextView
android:id="@+id/textView"
android:layout_width="75dp"
android:layout_height="29dp"
android:text="题目数量"
tools:layout_editor_absoluteX="65dp"
tools:layout_editor_absoluteY="143dp" /> <EditText
android:id="@+id/editText"
android:layout_width="173dp"
android:layout_height="25dp"
android:ems="10"
android:inputType="textPersonName"
android:text=""
tools:layout_editor_absoluteX="126dp"
tools:layout_editor_absoluteY="143dp" />
</android.support.constraint.ConstraintLayout>
</LinearLayout>

简单模式做题界面

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"> <android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"> <TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="99/99"
tools:layout_editor_absoluteX="53dp"
tools:layout_editor_absoluteY="136dp" /> <TextView
android:id="@+id/textView8"
android:layout_width="24dp"
android:layout_height="18dp"
android:text="-"
tools:layout_editor_absoluteX="111dp"
tools:layout_editor_absoluteY="135dp" /> <TextView
android:id="@+id/textView9"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="99/99"
tools:layout_editor_absoluteX="144dp"
tools:layout_editor_absoluteY="136dp" /> <TextView
android:id="@+id/textView10"
android:layout_width="36dp"
android:layout_height="17dp"
android:text="="
tools:layout_editor_absoluteX="193dp"
tools:layout_editor_absoluteY="136dp" /> <EditText
android:id="@+id/editText3"
android:layout_width="76dp"
android:layout_height="35dp"
android:ems="10"
android:inputType="textPersonName"
android:text=""
tools:layout_editor_absoluteX="238dp"
tools:layout_editor_absoluteY="127dp" /> <Button
android:id="@+id/button6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="下一题"
tools:layout_editor_absoluteX="147dp"
tools:layout_editor_absoluteY="240dp" /> </android.support.constraint.ConstraintLayout>
</LinearLayout>

团队源码仓库地址:https://git.coding.net/lizhiqiang0x01/APP-sizeyunsuan.git

https://git.coding.net/lizhiqiang0x01/Beta-APPsizeyunsuan.git

四、模块部分截图

五、项目进展

基本完成了今天的计划内容。就是在昨天界面的完善上大家出现了不一样的意见。部分队员认为,页面需要有趣味性一些才能更好地吸引学生用户;但其他队员认为简洁的页面有助于孩子集中注意力,并且我们的用户不只是孩子。目前我们采取了简洁页面的设置,但不排除后期可能会改变风格的可能性。

六、小结

项目方面:一切都在有条不紊地进行中,虽然不乏困难,但项目仍在一步一步迈向正轨。今天的界面我们不仅要考虑界面展示出来的设计,还要考虑到怎么在代码中实现我们的想法,有时候真的觉得代码是一件特别神奇的东西,它能帮我们把脑海中构建的画面变成现实画面,展现在我们眼前。我们会继续努力,并一直期待着心目中那个完美APP的出现

团队方面:第二次冲刺显然大家的状态比第一次好太多啦,每个人都能积极主动地完成自己的任务,因为有效地解决了任务分配不合适的问题。对于今天冲刺中遇到的问题,大家也都能积极主动地提出来,在站立会议中充分讨论。能坚持自己的观点,也能听取队友的意见,每个人都享受参与项目的过程,并从中获益,我认为这就是我们目前最大的进步了。

七、站立会议图片

团队作业八—第二次团队冲刺(Beta版本) 第 2 天的更多相关文章

  1. 团队作业7——第二次项目冲刺-Beta版本项目计划

    上一个阶段的总结: 在Alpha阶段,我们小组已近完成了大部分的功能要求,小组的每一个成员都发挥了自己的用处.经过了这么久的磨合,小组的成员之间越来越默契,相信在接下来的合作中,我们的开发速度会越来越 ...

  2. 团队作业八——第二次团队冲刺(Beta版本)第7天&项目汇总

    项目汇总 第一天:http://www.cnblogs.com/newteam6/p/6879383.html 第二天:http://www.cnblogs.com/newteam6/p/688078 ...

  3. 团队作业八——第二次团队冲刺(Beta版本)第6天

    团队作业八--第二次团队冲刺(Beta版本)第6天 一.每个人的工作 (1) 昨天已完成的工作 简单模式逻辑代码涉及与相关功能的具体实现 (2) 今天计划完成的工作 修改完善注册登录内容界面,编辑错题 ...

  4. 团队作业八——第二次团队冲刺(Beta版本)第5天

    团队作业八--第二次团队冲刺(Beta版本)第5天 一.每个人的工作 (1) 昨天已完成的工作 完成界面跳转界面. (2) 今天计划完成的工作 简单模式逻辑代码涉及与相关功能的具体实现 (3) 工作中 ...

  5. 团队作业八——第二次团队冲刺(Beta版本)第4天

    团队作业八--第二次团队冲刺(Beta版本)第4天 一.每个人的工作 (1) 昨天已完成的工作 做一下用户注册的功能和登录功能. (2) 今天计划完成的工作 完成界面跳转 (3) 工作中遇到的困难 界 ...

  6. 团队作业8 ----第二次项目冲刺(Beta阶段)博客汇总

    一.冲刺计划安排 团队作业8--Beta版本冲刺计划及安排 二.七天冲刺汇总 [Beta]第一次Daily Scrum Meeting [Beta]第二次Daily Scrum Meeting [Be ...

  7. 团队作业八—第二次团队冲刺(Beta版本) 第 1 天

    一.每个人的工作 (1) 昨天已完成的工作 由于是才刚开始冲刺,所以没有昨天的工作 (2) 今天计划完成的工作: 对界面的优化和一些细节的完善 (3) 工作中遇到的困难: 工作中出现了意见不一的情况 ...

  8. 团队作业八——第二次团队冲刺(Beta版本)第3天

    一.每个人的工作 (1) 昨天已完成的工作 对界面进行完善,并增加简单界面(包含简单界面内含的界面),简单模式与复杂模式的选择界面. (2) 今天计划完成的工作 做一下用户注册的功能和登录功能. (3 ...

  9. 团队作业7——第二次项目冲刺(Beta版本)

    团队作业7——第二次项目冲刺-Beta版本项目计划 团队作业7——第二次项目冲刺(Beta版本)-第一篇 团队作业7——第二次项目冲刺(Beta版本)-第二篇 团队作业7——第二次项目冲刺(Beta版 ...

随机推荐

  1. css超简单实现div页面居中【适合做弹出框】

    1.前言 现在项目中用到弹出框的话大部分都是直接用控件的.不过有控件虽方便,但有时候会有冲突的地方.我上次用layui的弹出框控件,然后也用到了百度的编辑器uEditor,然后一切都好好的,结果编辑赋 ...

  2. javascript的词法作用域

    这个概念是js中相当基础也是极为重要的,很多想当然的错误或感觉怪异的问题都是和这个东西有关.所以,本文主要说下这个名词的概念以及讨论下他牵扯出来的有关变量.函数.闭包的问题. 由变量开始谈 习惯性先来 ...

  3. 【性能测试工具】- WebBench

    优点:模拟的并发量更大:缺点:统计的结果有限 概述: webbench是由Lionbridge公司(http://www.lionbridge.com)开发,它是Linux下的一个网站压力测试工具,它 ...

  4. python学习之核心数据类型

    python核心数据类型 对象类型 例子 数字 1234,-345 字符串 'spam' 列表 [1,3,'ds'] 元组 (1,'spam',6) 字典 {'name':'lili','age':1 ...

  5. Mac OS X 终端命令开启功能

    1.系统目录下显示资源库2.Finder显示隐藏文件3.Xcode卸载4.在Finder标题栏显示完整路径5.去掉窗口截屏的阴影6.强制Safari在新标签中打开网页7.改变截屏图片的保存位置 1.系 ...

  6. Ubuntu下Apache中部署Django

    环境:ubuntu12.04 server | apache2 | django1.6 | python2.7 | mod_wsgi 1. 安装apache2: sudo apt-get instal ...

  7. Centos7.2 编译安装方式搭建 phpMyAdmin

    1. 下载 编译 安装 pcre tar zxvf pcre-8.41.tar.gz cd pcre-8.41 ./configure --prefix=/opt/local/pcre-8.41 ma ...

  8. Servlet3.1上传图片示例

    一.前端JSP页面 <%@page pageEncoding="UTF-8"%><!DOCTYPE html><html><head> ...

  9. Java Swing项目专栏之项目业务流程与业务逻辑

    Java Swing项目专栏 项目前言 这个超市管理项目是从八月初开始的,原以为像我这样的小菜比是完全掌控不了这样的项目的.原因是因为大一大二还是没怎么好好学自己的专业课,这次项目做完,我给自己建立了 ...

  10. sphinx随笔记了一下

    sphinx笔记 一:下载中文版coreseek包1:解压后,将etc下的mysql.conf文件复制一份放到上级目录下,改名为sphinx.conf2:配置文件: 2.1:source配置数据源so ...