第七周(2) 打卡功能

来源:互联网 发布:迅捷数据恢复注册问题 编辑:程序博客网 时间:2024/05/30 13:42

引言

在这半周的工作中,我们小组仍然主要进行后台客户端的代码编写工作以及界面的优化,在这里,我对自己主要从事的工作,即客户端的打卡功能的规划,做一个重点的介绍。

一、界面编写

计划界面为一个列表,显示出每个人的打卡状态,以及上传的照片。具体代码如下所示:

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical">    <RelativeLayout        android:layout_width="match_parent"        android:layout_height="?attr/actionBarSize"        android:background="@color/white"        android:padding="0dp">        <ImageButton            android:layout_width="?attr/actionBarSize"            android:layout_height="?attr/actionBarSize"            android:layout_alignParentLeft="true"            android:background="@drawable/toolbar_back_bg"            android:onClick="CommentBack"            android:src="?attr/homeAsUpIndicator" />        <TextView            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:layout_centerInParent="true"            android:text="打卡"            android:textColor="@color/black"            android:textSize="19sp" />    </RelativeLayout>    <ListView        android:id="@+id/comment_lv"        android:layout_width="match_parent"        android:layout_height="match_parent" /></LinearLayout>

二、内部逻辑实现

逻辑代码目前还没有编写,因为后半周时还没有后台接口,所以只进行了一下类的创建与界面获取,这里不再贴代码。

同时下半周我帮页面做了一些xml方面的工作,代码大致如下:

<merge    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" >    <com.lorentzos.flingswipe.SwipeFlingAdapterView        android:id="@+id/frame"        android:background="#ffeee9e2"        android:layout_width="match_parent"        android:layout_height="match_parent"        app:rotation_degrees="15.5"        tools:context=".MyActivity" />    <include layout="@layout/buttons" /></merge>
原创粉丝点击