Small red dinosaur age groups - sprint DAY2

Small red dinosaur age groups - sprint DAY2

1. Today's task

  • Sheng Guorong: do a good job cart, pay + interface;
  • Liu Yingjie: a good job, "my" interface, + blog;
  • Zhao Pei Ning: improve the user's avatar selected camera function, + terminal server;
  • Hu Park: a good job launching interface, normally open APP, + terminal server;
  • Zou Jiawei: do a good job on the first day sprint blog, + terminal server (secondary);

2. Today burndown

Question 3. Today each crew encountered

  • 20,182,301 Zhao Pei Ning: during data transmission dishes, the external network service area, and the server to transmit data using soket have failed, stalled for transmission dishes.

  • Solution: Find a network, use WiFip2p, and detail the content. Understand its basic usage. By drawing on a network of open source code and find a solution.

    Wi-Fi peer (P2P) is a connection of Android, he does not need to organize a local area network environment, open wifi at both ends of the phone can search for each other.
    In all operations performed next, the goal we want to achieve, there are two:

(1) expand the parameter acquisition

(2) resolve to get the IP
concrete steps are divided into: registration, construction, start, search services, and initializes the radio to listen, and to resolve the IP server connection request

Reference blog: real Android Wifi P2p

Reference blog: Android the WiFi P2P development practice notes

Reference blog: Android the Wi-Fi P2P principle and source of learning

  • 20,182,316 Hu Park: Understanding mainfest is still in the initial stage, leading to the implementation of the page jump wrong and connections. Statement of activities and the implementation status of the order is not enough to understand, cause problems in specific operations.

  • 解决方案:首先,通过查询,了解到了mainfest最基本的作用——应用清单,简单的来说,就是声明各个组件,包括构成应用的Activity、服务、广播接收器和内容提供程序,并确定活动进行的进程。在网页上找到了一份相对完整的mainfest清单,我们通过理解这份清单上的相应内容,补充完善自己的清单。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.sample.teapot"
          android:versionCode="1"
          android:versionName="1.0.0.1" >

  <uses-feature android:glEsVersion="0x00020000"></uses-feature>

  <application
      android:allowBackup="false"
      android:fullBackupContent="false"
      android:supportsRtl="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:theme="@style/AppTheme"
      android:name="com.sample.teapot.TeapotApplication"
      >

    <!-- Our activity is the built-in NativeActivity framework class.
         This will take care of integrating with our NDK code. -->
    <activity android:name="com.sample.teapot.TeapotNativeActivity"
              android:label="@string/app_name"
              android:configChanges="orientation|keyboardHidden">
      <!-- Tell NativeActivity the name of our .so -->
      <meta-data android:name="android.app.lib_name"
                 android:value="TeapotNativeActivity" />
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
  </application>
</manifest>

参考博客:Android mainfest详解

4.项目进展

本次集体学习,app的功能又有了进一步完善,并在数据传输方面有了突破性进展。但app依然存在问题,服务器仍不成熟,并且安卓布局界面仍需美化,这将是我们下一次集体学习的重点内容。

5.明日工作安排

  • 20182301赵沛凝:继续研究服务器,并实现摄像头功能与程序的连接。
  • 20182315邹家伟::编写冲刺博客,并将登陆界面连接到主程序中。
  • 20182316胡泊:完成研究根据字符串长度跳到不同界面,并进行相关改善。解决卡退等问题。
  • 20182326刘颖洁:制作钱包和历史记录的界面设计。
  • 20182332盛国榕:完善界面设计,优化视图效果,将购物车和支付界面完成好

    6.各组员对项目的贡献量

学号 贡献值
20182301 5
20182315 5
20182316 5
20182326 5
20182333 5

7.小组照片

Guess you like

Origin www.cnblogs.com/zjwbk/p/12146733.html